-->

Print "Hello World " without semicolon

Posted by Admin on
How will you print “Hello World” without semicolon?

There can be many ways.  One of them is following.

#include<stdio.h>
int main()
{
       if (printf("Hello World") )     {    }

       return 0;
}







No comments:

Post a Comment