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 0 vote down

bash: Only one process

\#!/bin/bash
of() { of; }
of
link|flag
vote up 146 vote down

Read this line, and do what it says twice.

link|flag
1  
Argh! I have to sleep! HALP! :-( – Bernard Sep 16 '08 at 3:13
24  
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
1  
recursion: see recursion – Mark Jun 22 at 18:52
show 5 more comments
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 3 vote down
xor esp, esp
ret
link|flag
show 2 more comments
vote up 0 vote down

C# with 27 non-whitespace characters - includes the call.

Action a = null;
a = () => a();
a();
link|flag
vote up 5 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 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 0 vote down

Shell script solution in 10 characters including newlines:

Well, technically not stack overflow but logically so, if you consider spawning a new process as constructing a new stack frame.

#!sh
./so

Result:

antti@blah:~$ ./so
[disconnected]

Whoops. Note: don't try this at home

link|flag
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 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 0 vote down

MS-DOS batch:

copy CON so.bat
so.bat
^Z
so.bat
link|flag
show 1 more comment
vote up 0 vote down

Perl in 10 chars

sub x{&x}x

Eventually uses up all available memory.

link|flag
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 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 0 vote down

Ruby:

def i()i()end;i()

(17 chars)

link|flag
vote up 0 vote down

I have a list of these at Infinite Loop on E2 - see just the ones indicated as "Stack Overflow" in the title.

I think the shortest there is

[dx]dx

in dc. There may be a shorter solution in False.

EDIT: Apparently this doesn't work... At least on GNU dc. Maybe it was on a BSD version.

link|flag
show 2 more comments
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 0 vote down
//lang = C++... it's joke, of course
//Pay attention how 
void StackOverflow(){printf("StackOverflow!");}
int main()
{
    StackOverflow(); //called StackOverflow, right?
}
link|flag
1  
rimshot - He'll be here all week, try the veal. – Bernard Sep 16 '08 at 3:11
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

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 0 vote down

PHP - recursion just for fun. I imagine needing a PHP interpreter takes it out of the running, but hey - it'll make the crash.

function a() { a(); } a();
link|flag
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 0 vote down

On the cell spus, there are no stack overflows, so theres no need for recursion, we can just wipe the stack pointer.

asm("andi $1, $1, 0" );

link|flag
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
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 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

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 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 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 0 vote down

Clarion:

Poke(0)
link|flag
show 2 more comments

Your Answer

Get an OpenID
or

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