Wednesday, December 30, 2009

Simple function to print hello world without a semi colon

This is a very simple program which is used to print "Hello World" without using a semi circle.

void main()
{
if(printf("Hello World")
{
/* Do nothing */
}
else
{
/* Do nothing */
}
}

No comments: