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

prev 1 2 3 4
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 0 vote down

http://www.google.com/search?q=google.com

link|flag
vote up 0 vote down

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

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

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

in perl:

`$0`

As a matter of fact, this will work with any shell that supports the backquote-command syntax and stores its own name in $0

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

Prolog

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

p :- p, q.
:- p.
link|flag
vote up 0 vote down

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

(defun f () (1+ (f)))
link|flag
vote up 0 vote down

In Haskell

fix (1+)

This tries to find the fix point of the (1+) function (λ n → n + 1) . The implementation of fix is

fix f = (let x = f(x) in x)

So

fix (1+)

becomes

(1+) ((1+) ((1+) ...))

Note that

fix (+1)

just loops.

link|flag
vote up 0 vote down

Meta problem in D:

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

compile time stack overflow

link|flag
vote up 0 vote down
_asm t: call t;
link|flag
vote up 0 vote down

A better lua solution:

function c()c()end;

Stick this into SciTE or an interactive command prompt and then call it. Boom!

link|flag
vote up 0 vote down

bash: Only one process

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

CMD overflow in one line

echo @call b.cmd > b.cmd & b
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

In response to the Y combinator comment, i might as well through in the Y-combinator in the SKI calculus:

S (K (S I I)) (S (S (K S) K) (K (S I I)))

There aren't any SKI interpreters that i know of but i once wrote a graphical one in about an hour in actionscript. I would be willing to post if there is interest (though i never got the layout working very efficiently)

read all about it here: http://en.wikipedia.org/wiki/SKI_combinator_calculus

link|flag
vote up 0 vote down

why not

mov sp,0

(stack grows down)

link|flag
vote up 0 vote down

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

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

brainf*ck 5 char

+[>+]
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 -2 vote down

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

link|flag
vote up -2 vote down
Redmond.Microsoft.Core.Windows.Start()
link|flag
prev 1 2 3 4

Your Answer

Get an OpenID
or

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