Saturday 4 August 2012

To Print A statement without Using Semicolon


#include<stdio.h>
#include<conio.h>
void main()
{
    if(printf("Hello world"))
    {
    }
    getche();
}

No comments:

Post a Comment