vote up 62 vote down star
16

To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome.

ETA: Just to be clear on this question, seeing as I'm an occasional Scheme user: tail-call "recursion" is really iteration, and any solution which can be converted to an iterative solution relatively trivially by a decent compiler won't be counted. :-P

ETA2: I've now selected a “best answer”; see this post for rationale. Thanks to everyone who contributed! :-)

flag
3  
Hope you like my new entry. One byte, and faster overflow than befunge... stackoverflow.com/questions/62188/… – Adam Davis Feb 28 at 2:19
show 1 more comment

110 Answers

1 2 3 4 next
vote up 119 vote down check

All these answers and no Befunge? I'd wager a fair amount it's shortest solution of them all:

1

Not kidding. Try it yourself: http://www.quirkster.com/js/befunge.html

EDIT: I guess I need to explain this one. The 1 operand pushes a 1 onto Befunge's internal stack and the lack of anything else puts it in a loop under the rules of the language.

Using the interpreter provided, you will eventually--and I mean eventually--hit a point where the Javascript array that represents the Befunge stack becomes too large for the browser to reallocate. If you had a simple Befunge interpreter with a smaller and bounded stack--as is the case with most of the languages below--this program would cause a more noticeable overflow faster.

link|flag
1  
Hmm … but is this really a stack overflow or just an infinite loop? My JS interpreter did not overflow, it just went on vacation, so to speak. – Konrad Rudolph Sep 16 '08 at 7:53
2  
definitely the best one – Jean Sep 16 '08 at 16:16
1  
You.. crashed my browser and.. sent my CPU fan into overdrive. – Sam152 May 11 at 15:01
show 6 more comments
vote up 143 vote down

Read this line, and do what it says twice.

link|flag
22  
Dude. You just crashed my ... – Dan Esparza Dec 12 '08 at 22:07
3  
lather, rinse, repeat – Mikeage Jan 5 at 13:17
4  
Can I wish for five more wishes so I can get out of this loop? – Nosredna Jun 22 at 18:27
show 7 more comments
vote up 119 vote down

You could also try this in C#.net

throw new StackOverflowException();
link|flag
3  
That's not a real stack overflow!! However, I'll upvote you for originality. :-P – Chris Jester-Young Sep 15 '08 at 11:56
2  
Nope, but it's the quickest way because the program doesn't have to follow the stack to error, it just simply throws an exception. Genius. – GateKiller Sep 15 '08 at 12:13
1  
The pedant in me says it doesn't cause any stack to overflow, just throws an exception. That's like saying the quickest way to be attacked by sharks is to stand in the sea and scream "Shark attack!". Despite this, I will up-vote it. :) – Bernard Sep 16 '08 at 3:06
show 6 more comments
vote up 82 vote down

My current best (in x86 assembly) is:

push eax
jmp short $-1

which results in 3 bytes of object code (50 EB FD). For 16-bit code, this is also possible:

call $

which also results in 3 bytes (E8 FD FF).

link|flag
3  
Counting the bytes after "compiling" (or assembling) is not code-golf. – lbrandy Sep 15 '08 at 13:38
1  
The question says "[...] what's the shortest code to cause a stack overflow?" It doesn't specify source code, interpreted code, machine code, object code or managed code... – Anders Sandvig Sep 15 '08 at 13:42
show 4 more comments
vote up 75 vote down

Nemerle:

This crashes the compiler with a StackOverflowException:

def o(){[o()]}
link|flag
5  
Bonus! Meta stack overflow! – Chris Jester-Young Sep 15 '08 at 12:26
1  
Definite bonus points for that. – Wedge Sep 16 '08 at 2:12
vote up 46 vote down

C#:

public int Foo { get { return Foo; } }
link|flag
4  
lol, I did this once by accident, but it wasn't as obivous. I blame intellisense. – sieben Sep 15 '08 at 12:26
2  
oh, it compiles alright, set this one in a juniors lap and watch them debug for a day looking for it, the website project, will just shut down, 503, no warning, no debug, up, down. – DevelopingChris Sep 15 '08 at 12:42
2  
Yes, I'll admit to also doing this, once, by accident. – Si Feb 24 at 21:28
1  
I started naming private variables _foo years ago because intellisense tends to cause this if your backing private field is just a lower case version of the property. Automatic variables in C# 3 eliminate this drudgery altogether. – Brian Reiter Jun 25 at 14:31
show 6 more comments
vote up 29 vote down

PIC18

The PIC18 answer given by TK results in the following instructions (binary):

overflow
   PUSH
   0000 0000 0000 0101
   CALL overflow
   1110 1100 0000 0000
   0000 0000 0000 0000

However, CALL alone will perform a stack overflow:

CALL $
1110 1100 0000 0000
0000 0000 0000 0000

Smaller, faster PIC18

But RCALL (relative call) is smaller still (not global memory, so no need for the extra 2 bytes):

RCALL $
1101 1000 0000 0000

So the smallest on the PIC18 is a single instruction, 16 bits (two bytes). This would take 2 instruction cycles per loop. At 4 clock cycles per instruction cycle you've got 8 clock cycles. The PIC18 has a 31 level stack, so after the 32nd loop it will overflow the stack, in 256 clock cycles. At 64MHz, you would overflow the stack in 4 micro seconds and 2 bytes.

PIC16F5x (even smaller and faster)

However, the PIC16F5x series uses 12 bit instructions:

CALL $
1001 0000 0000

Again, two instruction cycles per loop, 4 clocks per instruction so 8 clock cycles per loop.

However, the PIC16F5x has a two level stack, so on the third loop it would overflow, in 24 instructions. At 20MHz, it would overflow in 1.2 micro seconds and 1.5 bytes.

Intel 4004

The Intel 4004 has an 8 bit call subroutine instruction:

CALL $
0101 0000

For the curious that corresponds to an ascii 'P'. With a 3 level stack that takes 24 clock cycles for a total of 32.4 micro seconds and one byte. (Unless you overclock your 4004 - come on, you know you want to.)

Which is as small as the befunge answer, but much, much faster than the befunge code running in current interpreters.

link|flag
1  
Very nice. :-) I can't accept two answers, so I've just +1'd your answer, and hope everyone else does the same and bump it up. :-P – Chris Jester-Young Mar 6 at 19:26
2  
Ah, I figured that the smallest and fastest might beat out the the smallest, but such is life. Thanks anyway! – Adam Davis Mar 6 at 22:12
1  
Sweet. I started out on Z-80 assembler, and it's nice to know there's still low-level awesomeness in the world! – Mark Harrison Aug 24 at 20:04
vote up 23 vote down

Z-80 assembler -- at memory location 0x0000:

rst 00

one byte -- 0xC7 -- endless loop of pushing the current PC to the stack and jumping to address 0x0000.

link|flag
show 3 more comments
vote up 22 vote down

Every task needs the right tool. Meet the SO Overflow language, optimized to produce stack overflows:

so
link|flag
1  
Did you just invent this language just for the purpose of this question? :-P – Chris Jester-Young Sep 16 '08 at 10:55
1  
Yea … unfortunately, I wrote it (well, the HTML page took longer than the “interpreter”) before seeing the Befunge solution. Can't beat that. ;-) – Konrad Rudolph Sep 16 '08 at 12:55
1  
But, in my defense, even the language's name produces a stack overflow. Oh well. – Konrad Rudolph Sep 16 '08 at 12:56
1  
If you're making a specialized language for generating overflows with a minimal of code, obviously you would want (1) empty input produces stack overflowing code (probably a small binary that runs the native code generated from the assembly code entry) or (2) all input programs produce said binary. – Jared Updike Sep 18 '08 at 19:08
show 5 more comments
vote up 19 vote down

In english:

recursion = n. See recursion.
link|flag
9  
Any sensible human brain will tail-call optimise the interpretation of this one too, and not blow up. :-P – Chris Jester-Young Sep 15 '08 at 11:53
26  
Chris, sensible human brains are becoming a rarity these days. – Jason Z Sep 15 '08 at 13:46
8  
rarity...you mean they exist? – Adam Lerman Sep 15 '08 at 16:13
show 1 more comment
vote up 19 vote down

TeX:

\def\a{\a.}\a

Results in:

! TeX capacity exceeded, sorry [input stack size=5000].
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
...
 \a

link|flag
vote up 18 vote down

How about the following in BASIC:

10 GOSUB 10

(I don't have a BASIC interpreter I'm afraid so that's a guess).

link|flag
1  
Not really a stack overflow since BASIC is a stackless language. Even VB (which does have a stack) wouldn't overflow on this since it's just jumping, not creating a stack frame. – Daniel Spiewak Sep 16 '08 at 1:16
3  
That's a GOSUB, not a GOTO. Since it `RETURN`s to where it was called from, surely it's using a stack? – Tom Sep 16 '08 at 1:55
2  
I ran this one in yabasic just for the fun of it, and it nearly took down my computer. Thank god malloc eventually failed, but I was paging like no tomorrow. – Adam Rosenfield Oct 23 '08 at 5:08
show 4 more comments
vote up 16 vote down

I loved Cody's answer heaps, so here is my similar contribution, in C++:

template <int i>
class Overflow {
    typedef typename Overflow<i + 1>::type type;
};

typedef Overflow<0>::type Kaboom;

Not a code golf entry by any means, but still, anything for a meta stack overflow! :-P

link|flag
vote up 13 vote down

Here's my C contribution, weighing in at 18 characters:

void o(){o();o();}

This is a lot harder to tail-call optimise! :-P

link|flag
2  
Doesn't compile for me: "undefined reference to `main'" :P – Andrew Johnson Sep 15 '08 at 12:58
1  
@Dinah: One of the constraints of my contest was that tail-call optimisation doesn't count as recursion; it's just an iterative loop. If you only wrote o() once, that can be tail-call optimised into something like this (by a competent compiler): "o: jmp o". With 2 calls of o, the compiler has to use something like: "o: call o; jmp o". It's the recursive "call" instruction that makes the stack overflow. – Chris Jester-Young Jun 22 at 19:30
show 2 more comments
vote up 11 vote down

Groovy:

main()

$ groovy stack.groovy:

Caught: java.lang.StackOverflowError
    at stack.main(stack.groovy)
    at stack.run(stack.groovy:1)
 ...
link|flag
show 2 more comments
vote up 11 vote down
Person JeffAtwood;
Person JoelSpolsky;
JeffAtwood.TalkTo(JoelSpolsky);

Here's hoping for no tail recursion!

link|flag
1  
Hehe, funny. Related to conversations, the idea of the "echo chamber effect" is quite interesting, too. Not quite stack overflow-inducing, but still. – Chris Jester-Young Sep 17 '08 at 0:13
3  
Wouldn't this be a null pointer exception? Sorry, I know it's a joke. – jamesh Oct 23 '08 at 12:11
vote up 9 vote down

Using a Window's batch file named "s.bat":

call s
link|flag
vote up 8 vote down

Another PHP Example:

<?
require(__FILE__);
link|flag
vote up 8 vote down

Python:

so=lambda:so();so()

Alternatively:

def so():so()
so()

And if Python optimized tail calls...:

o=lambda:map(o,o());o()
link|flag
show 1 more comment
vote up 7 vote down

perl in 12 chars:

$_=sub{&$_};&$_

bash in 10 chars (the space in the function is important):

i(){ i;};i
link|flag
show 2 more comments
vote up 5 vote down

Java

Slightly shorter version of the Java solution.

class X{public static void main(String[]a){main(a);}}
link|flag
4  
Or (same number of characters): public static void main(String...a){main();} – mmyers May 13 at 15:37
show 1 more comment
vote up 5 vote down

I'm selecting the “best answer” after this post. But first, I'd like to acknowledge some very original contributions:

  1. aku's ones. Each one explores a new and original way of causing stack overflow. The idea of doing f(x) ⇒ f(f(x)) is one I'll explore in my next entry, below. :-)
  2. Cody's one that gave the Nemerle compiler a stack overflow.
  3. And (a bit grudgingly), GateKiller's one about throwing a stack overflow exception. :-P

Much as I love the above, the challenge is about doing code golf, and to be fair to respondents, I have to award “best answer” to the shortest code, which is the Befunge entry; I don't believe anybody will be able to beat that (although Konrad has certainly tried), so congrats Patrick!

Seeing the large number of stack-overflow-by-recursion solutions, I'm surprised that nobody has (as of current writing) brought up the Y combinator (see Dick Gabriel's essay, The Why of Y, for a primer). I have a recursive solution that uses the Y combinator, as well as aku's f(f(x)) approach. :-)

((Y (lambda (f) (lambda (x) (f (f x))))) #f)
link|flag
vote up 5 vote down

Javascript

To trim a few more characters, and to get ourselves kicked out of more software shops, let's go with:

eval(i='eval(i)');
link|flag
show 1 more comment
vote up 4 vote down

3 bytes:

label:
  pusha
  jmp label

Update

According to the (old?) Intel(?) documentation, this is also 3 bytes:

label:
  call label

link|flag
show 4 more comments
vote up 4 vote down

In Lua:

function f()return 1+f()end f()

You've got to do something to the result of the recursive call, or else tail call optimization will allow it to loop forever. Weak for code golf, but nice to have!

I guess that and the lengthy keywords mean Lua won't be winning the code golf anytime soon.

link|flag
show 2 more comments
vote up 4 vote down

C - It's not the shortest, but it's recursion-free. It's also not portable: it crashes on Solaris, but some alloca() implementations might return an error here (or call malloc()). The call to printf() is necessary.

#include <stdio.h>
#include <alloca.h>
#include <sys/resource.h>
int main(int argc, char *argv[]) {
    struct rlimit rl = {0};
    getrlimit(RLIMIT_STACK, &rl);
    (void) alloca(rl.rlim_cur);
    printf("Goodbye, world\n");
    return 0;
}
link|flag
show 1 more comment
vote up 4 vote down

Forth:

: a 1 recurse ; a

Inside the gforth interpreter:

: a 1 recurse ; a 
*the terminal*:1: Return stack overflow
: a 1 recurse ; a
                ^
Backtrace:

On a Power Mac G4 at the Open Firmware prompt, this just hangs the machine. :)

link|flag
vote up 4 vote down

Here's another interesting one from Scheme:

((lambda (x) (x x)) (lambda (x) (x x)))
link|flag
show 1 more comment
vote up 3 vote down

Ruby:

def s() s() end; s()
link|flag
6  
You call yourself a ruby programmer...? You can do better: def s;s;end;s – Mike Stone Oct 14 '08 at 7:13
vote up 3 vote down

Java (embarassing):

public class SO 
{ 
  private void killme()
  {
    killme();
  }

  public static void main(String[] args) 
  { 
    new SO().killme(); 
  } 
}

EDIT Of course it can be considerably shortened:

class SO
{
  public static void main(String[] a)
  {
    main(null);
  }
}
link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.