Program: Program to print some thing with out using semicolon(;)
#include<stdio.h>
int main()
int main()
//printf returns the length of string being printed
if (printf("Hello World\n")) //prints Hello World and returns 11
{
//do nothing
}
return 0;
}
Output:
Hello World
Explanation:
The if statement checks for condition whether the return value of printf("Hello World") is greater than 0. printf function returns the length of the string printed. Hence the statement if (printf("Hello World")) prints the string "Hello World".