While surfing on the Internet I came across this:

#include <stdio.h>

main(t,_,a)
char *a;
{return!0<t?t<3?main(-79,-13,a+main(-87,1-_,
main(-86, 0, a+1 )+a)):1,t<_?main(t+1, _, a ):3,main ( -94, -27+t, a
)&&t == 2 ?_<13 ?main ( 2, _+1, "%s %d %d\n" ):9:16:t<0?t<-72?main(_,
t,"@n'+,#'/*{}w+/w#cdnr/+,{}r/*de}+,/*{*+,/w{%+,/w#q#n+,/#{l,+,/n{n+\
,/+#n+,/#;#q#n+,/+k#;*+,/'r :'d*'3,}{w+K w'K:'+}e#';dq#'l q#'+d'K#!/\
+k#;q#'r}eKK#}w'r}eKK{nl]'/#;#q#n'){)#}w'){){nl]'/+#n';d}rw' i;# ){n\
l]!/n{n#'; r{#w'r nc{nl]'/#{l,+'K {rw' iK{;[{nl]'/w#q#\
n'wk nw' iwk{KK{nl]!/w{%'l##w#' i; :{nl]'/*{q#'ld;r'}{nlwb!/*de}'c \
;;{nl'-{}rw]'/+,}##'*}#nc,',#nw]'/+kd'+e}+;\
#'rdq#w! nr'/ ') }+}{rl#'{n' ')# }'+}##(!!/")
:t<-50?_==*a ?putchar(a[31]):main(-65,_,a+1):main((*a == '/')+t,_,a\
+1 ):0<t?main ( 2, 2 , "%s"):*a=='/'||main(0,main(-61,*a, "!ek;dc \
i@bK'(q)-[w]*%n+r3#l,{}:\nuwloca-O;m .vpbks,fxntdCeghiry"),a+1);}

This compiles perfectly and outputs some christmass lyrics. Now how the heck does this work? What are the '?' and '#' everywhere? How can the main(t,_,a) not have either a body or a semicolon and still compile?

Original source: http://www.cs.cf.ac.uk/Dave/C/node4.html

link|improve this question

58% accept rate
This isn't a real question. You'd go a long way to understanding this simply by putting in some whitespace. – Oli Charlesworth Aug 19 '11 at 14:06
2  
main has a body, but the programmer is using old style K&R declarations. The body is right below "char *a;". – onemasse Aug 19 '11 at 14:09
recursion, yes? – hexa Aug 19 '11 at 14:17
1  
This is likely intended for the Obfuscated C Code Contest. The programs usually come with a solution to them. – Lundin Aug 19 '11 at 14:25
feedback

closed as not a real question by Oli Charlesworth, paxdiablo, progrmr, Blagovest Buyukliev, Shawn Chin Aug 19 '11 at 14:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

? is a short conditional statement in C

conditional ? what_if_true : what_if_false

you can find some : at the end of that code

the body of main is between brackets {}

in this case main is called in recursive why, each time with a different parameters so it prints different chars

And _ is a very silly name of variable.

link|improve this answer
feedback

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