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

In C#, this would create a stackoverflow...

static void Main()
{
    Main();
}
link|flag
vote up 9 vote down

Using a Window's batch file named "s.bat":

call s
link|flag
vote up 10 vote down
Person JeffAtwood;
Person JoelSpolsky;
JeffAtwood.TalkTo(JoelSpolsky);

Here's hoping for no tail recursion!

link|flag
1  
Hehe, funny. Related to conversations, the idea of the "echo chamber effect" is quite interesting, too. Not quite stack overflow-inducing, but still. – Chris Jester-Young Sep 17 '08 at 0:13
3  
Wouldn't this be a null pointer exception? Sorry, I know it's a joke. – jamesh Oct 23 '08 at 12:11
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
vote up 0 vote down

I think this will work in Java (untried):

enum A{B.values()}
enum B{A.values()}

Should overflow in static initialization before it even gets the chance to fail due to a lack of main(String[]).

link|flag
vote up 20 vote down

TeX:

\def\a{\a.}\a

Results in:

! TeX capacity exceeded, sorry [input stack size=5000].
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
\a ->\a
        .
...
 \a

link|flag
vote up 0 vote down

Ruby, albeit not that short:

class Overflow
    def initialize
    	Overflow.new
    end
end

Overflow.new
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 0 vote down

I think it's cheating I've never played before ;) but here goes

8086 assembler:

org Int3VectorAdrress ;is that cheating?

int 3

1 byte - or 5 characters that generate code, what say you?

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

Not very short, but effective! (JavaScript)

setTimeout(1, function() {while(1) a=1;});
link|flag
vote up 2 vote down

as a local variable in a C function:

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

Prolog

p:-p.

= 5 characters

then start it and query p

i think that is quite small and runs out of stack in prolog.

a query of just a variable in swi prolog produces:

?- X. % ... 1,000,000 ............ 10,000,000 years later % % >> 42 << (last release gives the question)

and here is another bash fork bomb: :(){ :|:& };:

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

For Fun I had to look up the Motorolla HC11 Assembly:

              org           $100
Loop    nop
          jsr            Loop
link|flag
show 2 more comments
vote up 9 vote down

Another PHP Example:

<?
require(__FILE__);
link|flag
vote up -2 vote down

Oops, I dunno, I haver never written code that causes a Stack Overflow ;)

link|flag
vote up 4 vote down

Forth:

: a 1 recurse ; a

Inside the gforth interpreter:

: a 1 recurse ; a 
*the terminal*:1: Return stack overflow
: a 1 recurse ; a
                ^
Backtrace:

On a Power Mac G4 at the Open Firmware prompt, this just hangs the machine. :)

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

VB.Net

Function StackOverflow() As Integer
    Return StackOverflow()
End Function
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

Haskell:

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

Javascript

To trim a few more characters, and to get ourselves kicked out of more software shops, let's go with:

eval(i='eval(i)');
link|flag
show 1 more comment
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
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 0 vote down

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

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

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

link|flag
show 2 more comments
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

Ruby, shorter than the other ones so far:

def a;a;end;a

(13 chars)

link|flag

Your Answer

Get an OpenID
or

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