can u print any string wthout using " " in printf function?
without using " " anywhere in the program
#define str(a) #a
printf(str(Hi there));
I haven't figured out how this happens , but happens for sure!
Saturday, December 30, 2006
without "" in printf
Subscribe to:
Post Comments (Atom)
1 comment:
Hi!
Nice blog. Tracked you from the bitwise oage.
Anyway,
#a happens to be a macro, and it stringizes Hello to "Hello", which is what the compiler compiles.
Post a Comment