How does this "hello world!" program work?
Posted
by noob
on Stack Overflow
See other posts from Stack Overflow
or by noob
Published on 2010-04-19T18:53:19Z
Indexed on
2010/05/08
20:08 UTC
Read the original article
Hit count: 165
int main(void)
{
return('yes', *"no", **main, *********printf) ("hello world!\n") *0;
}
outputs hello world!
, but how does it actually work?
© Stack Overflow or respective owner