vote up 62 vote down star
17

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

112 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  
And it hangs Firefox to boot. Nice :) – irixman Sep 16 '08 at 4:14
3  
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
2  
You.. crashed my browser and.. sent my CPU fan into overdrive. – Sam152 May 11 at 15:01
1  
Safari asked me if I wanted to stop the script :). – Mk12 Oct 17 at 19:59
show 5 more comments
vote up 85 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
5  
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 0 vote down

C++:

int overflow(int n)
{
    return overflow(1);
}
link|flag
2  
A good compiler can tail-call optimise that one! :-P – Chris Jester-Young Sep 15 '08 at 11:21
vote up 47 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 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 1 vote down

PIC18:

overflow

    PUSH   
    CALL   overflow
link|flag
show 2 more comments
vote up 0 vote down
int main(){
    int a = 20;
    return main();
}
link|flag
show 2 more comments
vote up 0 vote down

JavaScript:

function i(){ i(); }
i();


C++ Using a function-pointer:

int main(){
   int (*f)() = &main;
   f();
}
link|flag
show 5 more comments
vote up 20 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
28  
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 1 vote down
/* In C/C++ (second attempt) */

int main(){
    int a = main() + 1;
    return a;
}
link|flag
show 5 more comments
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  
I don't understand: why call o() 2x? – Dinah Jun 22 at 19:14
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 1 more comment
vote up 0 vote down

C#, done in 20 characters (exclusing whitespace):

int s(){
    return s();
}
link|flag
show 2 more comments
vote up 2 vote down

CIL/MSIL:

loop: ldc.i4.0
br loop

Object code:

16 2B FD
link|flag
show 1 more comment
vote up 121 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
2  
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 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 76 vote down

Nemerle:

This crashes the compiler with a StackOverflowException:

def o(){[o()]}
link|flag
7  
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 3 vote down

Ruby:

def s() s() end; s()
link|flag
7  
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 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 2 vote down

Lisp

(defun x() (x)) (x)
link|flag
1  
In current implementations of Common Lisp, you will have to explicitly declaim or declare TCO away. Scheme even requires TCO. To make this surely overflow, don't tail recurse: (defun x () (1+ (x))) (x). – Svante Jun 10 at 6:29
show 1 more comment
vote up 2 vote down
a{return a*a;};

Compile with:

gcc -D"a=main()" so.c

Expands to:

main() {
    return main()*main();
}
link|flag
show 3 more comments
vote up 1 vote down

c# again:

class Foo { public Foo() {new Foo(); } }
link|flag
show 2 more comments
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 1 vote down

Complete Delphi program.

program Project1;
{$APPTYPE CONSOLE}
uses SysUtils;

begin
  raise EStackOverflow.Create('Stack Overflow');
end.
link|flag
show 1 more comment
vote up 0 vote down

Clarion:

Poke(0)
link|flag
show 2 more comments
vote up 4 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
vote up 1 vote down

so.c in 15 characters:

main(){main();}

Result:

antti@blah:~$ gcc so.c -o so
antti@blah:~$ ./so
Segmentation fault (core dumped)

Edit: Okay, it gives warnings with -Wall and does not cause a stack overflow with -O2. But it works!

link|flag
show 1 more comment
vote up 0 vote down

I tried to do it in Erlang:

c(N)->c(N+1)+c(N-1).
c(0).

The double invocation of itself makes the memory usage go up O(n^2) rather than O(n).

However the Erlang interpreter doesn't appear to manage to crash.

link|flag
show 1 more comment
vote up 0 vote down

JavaSript:

Huppies answer to one line:

(function i(){ i(); })()

Same amount of characters, but no new line :)

link|flag
show 1 more comment
vote up 0 vote down

recursion is old hat. here is mutual recursion. kick off by calling either function.

a()
{
    b();
}
b()
{
    a();
}

PS: but you were asking for shortest way.. not most creative way!

link|flag
show 1 more comment
vote up 1 vote down

Java (complete content of X.java):

class X {
public static void main(String[] args) {
    main(null);
}}

Considering all the syntactic sugar, I am wondering if any shorter can be done in Java. Anyone?

EDIT: Oops, I missed there is already almost identical solution posted.

EDIT 2: I would say, that this one is (character wise) the shortest possible

class X{public static void main(String[]a){main(null);}}

EDIT 3: Thanks to Anders for pointing out null is not optimal argument, so it's shorter to do:

class X{public static void main(String[]a){main(a);}}
link|flag
show 2 more comments
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.