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;
}
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