Puzzle Statement : Print “Hello World!” on the screen without using ; or ! anywhere in the program. Solution : [spoiler] main() { if(int var=33) if(printf(“Hello World%c“,var)) { } getch(); } [/spoiler]
Naveen kumar on January 18, 2013 4:37 pm #include void main() {if(printf(“Hello world%c”,33)) } Reply
1 Comment
#include
void main()
{if(printf(“Hello world%c”,33))
}