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

vote up 3 vote down

batch program called call.cmd;

call call.cmd

******  B A T C H   R E C U R S I O N  exceeds STACK limits ******
Recursion Count=1240, Stack Usage=90 percent
******       B A T C H   PROCESSING IS   A B O R T E D      ******
link|flag
vote up 3 vote down
xor esp, esp
ret
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 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

In Scheme, this will cause the interpreter to run out of memory:

(define (x)
  ((x)))

(x)
link|flag
vote up 2 vote down

Haskell:

let x = x
print x
link|flag
show 1 more comment
vote up 2 vote down

Well, nobody's mentioned Coldfusion yet, so...

<cfinclude template="#ListLast(CGI.SCRIPT_NAME, "/\")#">

That oughta do it.

link|flag
vote up 2 vote down

C#

class _{static void Main(){Main();}}

Note that mine is a compilable program, not just a single function. I also removed excess whitespace.

For flair, I made the class name as small as I could.

link|flag
vote up 2 vote down

In Irssi (terminal based IRC client, not "really" a programming language), $L means the current command line. So you can cause a stack overflow ("hit maximum recursion limit") with:

/eval $L
link|flag
vote up 2 vote down

Groovy (5B):

run()
link|flag
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

as a local variable in a C function:

int x[100000000000];
link|flag
vote up 2 vote down

Please tell me what the acronym "GNU" stands for.

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

PIC18:

overflow

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

c# again:

class Foo { public Foo() {new Foo(); } }
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 1 vote down

There was a perl one already, but this is a couple characters shorter (9 vs 12) - and it doesn't recurse :)

s//*_=0/e

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

GWBASIC output...

OK
10 i=0
20 print i;
30 i=i+1
40 gosub 20
run
 0  1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21
 22  23  24  25  26  27  28  29  30  31  32  33
Out of memory in 30
Ok

Not much stack depth there :-)

link|flag
vote up 1 vote down

F#

People keep asking "What is F# useful for?"

let rec f n =
    f (n)

performance optimized version (will fail faster :) )

let rec f n =
    f (f(n))
link|flag
show 4 more comments
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 1 vote down

In Whitespace, I think:

It probably won't show up. :/

link|flag
2  
SP SP SP TAB NL NL SP SP SP TAB SP SP SP SP TAB TAB NL TAB SP SP SP NL SP TAB SP TAB SP SP SP SP TAB TAB NL NL NL – Chris Jester-Young Sep 16 '08 at 23:55
show 1 more comment
vote up 1 vote down

Ruby, shorter than the other ones so far:

def a;a;end;a

(13 chars)

link|flag
vote up 1 vote down

try and put more than 4 patties on a single burger. stack overflow.

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

In assembly language (x86 processors, 16 or 32 bit mode):


call $

which will generate:

  • in 32 bit mode: 0xe8;0xfb;0xff;0xff;0xff

  • in 16 bit mode: 0xe8;0xfd;0xff

in C/C++:


int main( ) {
  return main( );
}
link|flag
vote up 1 vote down

TCL:

proc a {} a

I don't have a tclsh interpreter that can do tail recursion, but this might fool such a thing:

proc a {} "a;a"
link|flag
vote up 1 vote down

Unless there's a language where the empty program causes a stack overflow, the following should be the shortest possible.

Befunge:

:

Duplicates the top stack value over and over again.

edit: Patrick's is better. Filling the stack with 1s is better than filling the stack with 0s, since the interpreter could optimize pushing 0s onto an empty stack as a no-op.

link|flag
vote up 1 vote down

If you consider a call frame to be a process, and the stack to be your Unix machine, you could consider a fork bomb to be a parallel program to create a stack overflow condition. Try this 13-character bash number. No saving to a file is necessary.

:(){ :|:& };:
link|flag
show 1 more comment
vote up 1 vote down

PowerShell

$f={&$f};&$f

"The script failed due to call depth overflow. The call depth reached 1001 and the maximum is 1000."

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

won't be the shortest but I had to try something... C#

string[] f = new string[0]; Main(f);

bit shorter

static void Main(){Main();}
link|flag

Your Answer

Get an OpenID
or

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