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

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

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

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

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

Ruby:

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

(17 chars)

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

Perl in 10 chars

sub x{&x}x

Eventually uses up all available memory.

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

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

(define (x)
  ((x)))

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

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

Action a = null;
a = () => a();
a();
link|flag
vote up 3 vote down
xor esp, esp
ret
link|flag
show 2 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 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 0 vote down

bash: Only one process

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

Ruby, shorter than the other ones so far:

def a;a;end;a

(13 chars)

link|flag
vote up 0 vote down

Pretty much any shell:

sh $0

(5 characters, only works if run from file)

link|flag
show 1 more comment
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 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 0 vote down

Five bytes in 16-bit asm which will cause a stack overflow.

push cs
push $-1
ret
link|flag
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 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

Your Answer

Get an OpenID
or

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