up vote 160 down vote favorite
46
share [g+] share [fb]

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! :-)

link
3  
Hope you like my new entry. One byte, and faster overflow than befunge... stackoverflow.com/questions/62188/stack-overflow-code-golf/… – Adam Davis Feb 28 '09 at 2:19
show 2 more comments
feedback

locked by Kev Nov 16 '11 at 1:28

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ(/faq).

closed as not constructive by bmargulies, Kev Nov 16 '11 at 1:25

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

131 Answers

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
show 1 more comment
feedback

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
show 1 more comment
feedback

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

Perl in 10 chars

sub x{&x}x

Eventually uses up all available memory.

link
feedback

MS-DOS batch:

copy CON so.bat
so.bat
^Z
so.bat
link
show 1 more comment
feedback

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
feedback

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

Action a = null;
a = () => a();
a();
link
feedback

Pretty much any shell:

sh $0

(5 characters, only works if run from file)

link
show 1 more comment
feedback

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

push cs
push $-1
ret
link
feedback

VB.Net

Function StackOverflow() As Integer
    Return StackOverflow()
End Function
link
show 1 more comment
feedback

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

              org           $100
Loop    nop
          jsr            Loop
link
show 2 more comments
feedback

Not very short, but effective! (JavaScript)

setTimeout(1, function() {while(1) a=1;});
link
feedback

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
show 1 more comment
feedback

Ruby, albeit not that short:

class Overflow
    def initialize
    	Overflow.new
    end
end

Overflow.new
link
feedback

In a PostScript file called so.ps will cause execstackoverflow

%!PS
/increase {1 add} def
1 increase
(so.ps) run
link
show 1 more comment
feedback

Actionscript 3: All done with arrays...

var i=[];
i[i.push(i)]=i;
trace(i);

Maybe not the smallest but I think it's cute. Especially the push method returning the new array length!

link
show 1 more comment
feedback

In x86 assembly, place a divide by 0 instruction at the location in memory of the interrupt handler for divide by 0!

link
show 1 more comment
feedback

Prolog

This program crashes both SWI-Prolog and Sicstus Prolog when consulted.

p :- p, q.
:- p.
link
feedback

Tail call optimization can be sabotaged by not tail calling. In Common Lisp:

(defun f () (1+ (f)))
link
feedback

Meta problem in D:

class C(int i) { C!(i+1) c; }
C!(1) c;

compile time stack overflow

link
feedback
_asm t: call t;
link
feedback

bash: Only one process

\#!/bin/bash
of() { of; }
of
link
feedback

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

static void Main()
{
    Main();
}
link
feedback

why not

mov sp,0

(stack grows down)

link
feedback

OCaml

let rec f l = f l@l;;

This one is a little different. There's only one stack frame on the stack (since it's tail recursive), but it's input keeps growing until it overflows the stack. Just call f with a non empty list like so (at the interpreter prompt):

# f [0];;
Stack overflow during evaluation (looping recursion?).
link
feedback

Even though it doesn't really have a stack...

brainf*ck 5 char

+[>+]
link
feedback

Z80 assembly language...

.org 1000
loop: call loop

this generates 3 bytes of code at location 1000....

1000 CD 00 10

link
feedback

ruby (again):

def a(x);x.gsub(/./){a$0};end;a"x"

There are plenty of ruby solutions already but I thought I'd throw in a regexp for good measure.

link
feedback

Another Windows Batch file:

:a
@call :a
link
feedback

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