Of course, it is a pretty lightly obfuscated C code printing out "404".
This is what will get effectively compiled and executed (you can verify with
gcc -E -P
):1 | main(){ putchar (4+ putchar ( putchar (52)-4)); return 0;}; exit (); |
- Print the character dec 52 (which is the digit four)
- Print the character dec 52-4 = dec 48 (which is the digit zero)
- Print the character dec 48+4 = dec 52 again