//here programme to print hello world without using semicolon
//anywhere programme
#include<stdio.h>
void main()
{
if(printf("hello world!"))
{
//when it print hello world printf will return 1
//which is true condition for if and programme
//do not show any error
}
}//end of main
No comments:
Post a Comment