Tuesday 7 January 2014

c program that executes both if and else parts

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
if(!printf("oxford"))
{
}
else
{
printf("university");
}
getch();
}


OUTPUT:oxforduniversity

No comments:

Post a Comment