Thursday, 24 January 2013

C program to print some text without using semi-colon anywhere in the program

C program to print some text without using semi-colon anywhere in the program


#include<stdio.h>
#include<conio.h>
void main()
    {
      if(printf("Hi Mayank"))
        {
           }
     }

Output :   Hi Mayank

No comments:

Post a Comment