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

Another one in JavaScript:

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

Vb6


Public Property Let x(ByVal y As Long)
  x = y
End Property

Private Sub Class_Initialize()
  x = 0
End Sub
link|flag
show 2 more comments
vote up 1 vote down

Short solution in K&R C, could be compiled:

main(){main()}

14 bytes

link|flag
vote up 1 vote down

False:

[1][1]#

(False is a stack language: # is a while loop that takes 2 closures, a conditional and a body. The body is the one that causes the overflow).

link|flag
vote up 0 vote down

C++:

int overflow(int n)
{
    return overflow(1);
}
link|flag
2  
A good compiler can tail-call optimise that one! :-P – Chris Jester-Young Sep 15 '08 at 11:21
vote up 0 vote down
int main(){
    int a = 20;
    return main();
}
link|flag
show 2 more comments
vote up 0 vote down

C#, done in 20 characters (exclusing whitespace):

int s(){
    return s();
}
link|flag
show 2 more comments
vote up 0 vote down

JavaScript:

function i(){ i(); }
i();


C++ Using a function-pointer:

int main(){
   int (*f)() = &main;
   f();
}
link|flag
show 5 more comments
vote up 0 vote down

Clarion:

Poke(0)
link|flag
show 2 more comments
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 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

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

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

Ruby:

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

(17 chars)

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

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

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

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

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

Not very short, but effective! (JavaScript)

setTimeout(1, function() {while(1) a=1;});
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 0 vote down

Ruby, albeit not that short:

class Overflow
    def initialize
    	Overflow.new
    end
end

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

Your Answer

Get an OpenID
or

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