Skip to main content

Posts

Showing posts with the label C Program to print "hello World" without semicolon

C Program to print "hello World" without semicolon

 C Program to print "hello World" without semicolon Do Check My Video : Code: /********** C Program to print "hello" without semicolon **********/ #include <stdio.h> int main() { if(printf("Hello World\n")){ } switch(printf("Hello World\n")){ } while(!printf("Hello World")){ } return 0; } o/p: Hello World Hello World Hello World