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

prev 1 2 3 4
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 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

c# again:

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

Ruby:

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

Nemerle:

This crashes the compiler with a StackOverflowException:

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

CIL/MSIL:

loop: ldc.i4.0
br loop

Object code:

16 2B FD
link|flag
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 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 1 vote down
/* In C/C++ (second attempt) */

int main(){
    int a = main() + 1;
    return a;
}
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 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 0 vote down
int main(){
    int a = 20;
    return main();
}
link|flag
show 2 more comments
vote up 1 vote down

PIC18:

overflow

    PUSH   
    CALL   overflow
link|flag
show 2 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 47 vote down

C#:

public int Foo { get { return Foo; } }
link|flag
5  
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 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 86 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
prev 1 2 3 4

Your Answer

Get an OpenID
or

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