Powered By Blogger

Tuesday, April 26, 2011

Simple Program in C without any semi-colon (;)


#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Parag.\n"))
{
}
}


1 comment:

  1. Nice concept.. just a correction.. there is no need of those two braces for "if".. and to see the output use "getch();" func.

    ReplyDelete