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

VB.Net

Function StackOverflow() As Integer
    Return StackOverflow()
End Function
link|flag
show 1 more comment
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 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 -2 vote down

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

link|flag
vote up 9 vote down

Another PHP Example:

<?
require(__FILE__);
link|flag
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 -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 2 vote down

as a local variable in a C function:

int x[100000000000];
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

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

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

Ruby, albeit not that short:

class Overflow
    def initialize
    	Overflow.new
    end
end

Overflow.new
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

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

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

call s
link|flag
vote up 0 vote down

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

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

why not

mov sp,0

(stack grows down)

link|flag
vote up 0 vote down

In a PostScript file called so.ps will cause execstackoverflow

%!PS
/increase {1 add} def
1 increase
(so.ps) run
link|flag
show 1 more comment
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 23 vote down

Every task needs the right tool. Meet the SO Overflow language, optimized to produce stack overflows:

so
link|flag
1  
Did you just invent this language just for the purpose of this question? :-P – Chris Jester-Young Sep 16 '08 at 10:55
1  
Yea … unfortunately, I wrote it (well, the HTML page took longer than the “interpreter”) before seeing the Befunge solution. Can't beat that. ;-) – Konrad Rudolph Sep 16 '08 at 12:55
1  
But, in my defense, even the language's name produces a stack overflow. Oh well. – Konrad Rudolph Sep 16 '08 at 12:56
1  
If you're making a specialized language for generating overflows with a minimal of code, obviously you would want (1) empty input produces stack overflowing code (probably a small binary that runs the native code generated from the assembly code entry) or (2) all input programs produce said binary. – Jared Updike Sep 18 '08 at 19:08
show 5 more comments
vote up 1 vote down

Here's another Ruby answer, this one uses lambdas:

(a=lambda{a.call}).call
link|flag
show 2 more comments
vote up 6 vote down

I'm selecting the “best answer” after this post. But first, I'd like to acknowledge some very original contributions:

  1. aku's ones. Each one explores a new and original way of causing stack overflow. The idea of doing f(x) ⇒ f(f(x)) is one I'll explore in my next entry, below. :-)
  2. Cody's one that gave the Nemerle compiler a stack overflow.
  3. And (a bit grudgingly), GateKiller's one about throwing a stack overflow exception. :-P

Much as I love the above, the challenge is about doing code golf, and to be fair to respondents, I have to award “best answer” to the shortest code, which is the Befunge entry; I don't believe anybody will be able to beat that (although Konrad has certainly tried), so congrats Patrick!

Seeing the large number of stack-overflow-by-recursion solutions, I'm surprised that nobody has (as of current writing) brought up the Y combinator (see Dick Gabriel's essay, The Why of Y, for a primer). I have a recursive solution that uses the Y combinator, as well as aku's f(f(x)) approach. :-)

((Y (lambda (f) (lambda (x) (f (f x))))) #f)
link|flag
vote up 1 vote down

Another one in JavaScript:

(new function() { arguments.callee();});
link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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