I have journeyed thus and bruised into the lands of the error page on Stack Overflow. There, upon the sight on the hill I see a vision as such:

Stack Overflow 404

For those reading with images off:

# define v putchar
#   define print(x)
main(){v(4+v(v(52)-4));return 0;}/*
#>+++++++4+[>++++++<-]>
++++.----.++++.*/
print(202*2);exit();
#define/*>.@/exit()

How can I compile it?

More to the point, what is the joke?

link|improve this question

74% accept rate
1  
A little context might be helpful. Where did you see this on SO? – Bill the Lizard Nov 4 '09 at 23:53
LOL, that's hilarious! – Ether Nov 5 '09 at 0:01
Have a look at this collection of 404 pages. – Lazer Jun 23 '10 at 16:11
1  
What's this font? – mattalexx Jun 23 '10 at 20:49
Liberation Mono looks similar. – Lazer Jun 24 '10 at 3:31
1  
Close, but no cigar. I submitted it to WTF: new.myfonts.com/WhatTheFont/forum/case/295724/?flush=1 – mattalexx Jun 26 '10 at 0:05
1  
Just to follow up, the font is Pragmata: new.myfonts.com/fonts/fsd/pragmata/tt – mattalexx Jul 21 '10 at 21:44
feedback

5 Answers

up vote 71 down vote accepted

Want a step-by-step through it? I'm the original author of the polyglot.

The easy versions are Python, Perl, and Ruby: the only code executed is

print(202*2);exit();

because they all treat # as a line-comment. Obviously, the code prints "404" and exits the program.


The C code is fairly easy to read, but even easier if you run it through a preprocessor:

main(){putchar(4+putchar(putchar(52)-4));return 0;};exit();

Your standard main function is declared there, and exit is also declared as a function with an implicit return type of int (exit is effectively ignored).

putchar was used because you don't need any #include to use it; you give it an integer argument and it puts the corresponding ASCII character to stdout and returns the same value you gave it. So, we put 52 (which is 4); then we subtract 4 and output 0; then we add 4 to output 4 again.


The brainf*ck code will be a little more difficult to understand, but essentially it's the same as the C code.

+->       Effectively ignored from earlier part of code
++++++++  Put 8 in first memory location
[>++++++<-] Add 6 to second location; decrement first location; 
            repeat until first is 0; effectively this does 6*8 into 2nd location
>++++.    Move back into 2nd location and add 4 so we have a char of 52; print it
----.     Decrement 4 times to output a 0
++++.     Increment 4 times and output a 4
>.        Move pointer and output a null

Actually, that last line wasn't supposed to work that way. The last part was supposed to be ++++< before the >. Oh well, it's up there now.


Befunge is my favorite of the group. I recommend The Visual Befunge Applet if you want to see it in action.

Essentially, all the characters in define are pushed on the stack and never used. Then v points our instruction vector downwards. Then we push another e on the stack, which happens to be an ASCII value of 101. Push 4 on the stack, multiply, turn right, hit the . and print 404 to the screen. @ stops the program there.

link|improve this answer
1  
Is there a room for whitespace version? en.wikipedia.org/wiki/Whitespace_(programming_language) – Juha Syrjälä Nov 10 '09 at 18:56
4  
Yes, there should be room, but since the 404 is an image, it would be somewhat difficult to convey whitespace :) – Mark Rushakoff Nov 10 '09 at 23:19
feedback

It's from here. It's a Polyglot.

link|improve this answer
2  
It is actually from the official 404 page on SO now. – jjnguy Nov 5 '09 at 0:15
feedback

Here's my shot at a 404. It's not a polyglot, but it's more visually interesting:

#define _ f++>o--*ur-- || o--*h++ || f++*o--*ur;
int f = 0, o = 0, ur = 0, h = 0;
main(){f++;o--*ur;o--*h;f*our();printf("%d\n", (f-o-ur));}/*oh, f*/our(){
_-_     _-_      _-_      _-_     _-_
_-_     _-_     -_-_-     _-_     _-_
_-_     _-_  _-_-   -_-_  _-_     _-_
_-_-_-_-_-_  _-_-   -_-_  _-_-_-_-_-_
_-_-_-_-_-_  _-_-   -_-_  _-_-_-_-_-_
        _-_  _-_-   -_-_          _-_
        _-_  _-_-   -_-_          _-_
        _-_  _-_-   -_-_          _-_
        _-_     -_-_-             _-_
        _-_      _-_              _-_
}
link|improve this answer
1  
LOL. Very nice. – Jon Seigel Jun 23 '10 at 23:44
How do you even construct such a program? – usr Mar 25 at 21:39
Heavy use of macros. – d_r_w Mar 26 at 17:02
feedback

The joke is that it is a program that prints '404' to the screen.

The program is a polyglot. It is valid in C, Python, Perl, Ruby, Befunge-93, and Brainf*ck.

link|improve this answer
feedback

For copying purposes:

404.poly

# define v putchar
#   define print(x) main(){v(4+v(v(52)-4));return 0;}/*
#>+++++++4+[>++++++<-]>++++.----.++++.*/
print(202*2);exit();
#define/*>.@*/exit()

And to see the output under the different interpreters:

404.sh

#!/bin/sh
echo 'ruby:      ' $(ruby 404.poly)
echo 'python:    ' $(python 404.poly)
echo 'perl:      ' $(perl 404.poly)
echo 'brainfuck: ' $(bf 404.poly)
echo 'c:         ' $(gcc -xc -o404 404.poly 2>/dev/null && ./404)

#     befunge:     http://www.ashleymills.com/?q=befunge%5Fapplet%5Flite
link|improve this answer
If I made a typo fix it! – badp Jul 18 '10 at 9:13
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged