Friday 8 February 2013

17

What will be output of the following program?

#include<stdio.h>
int main()
{
int a=2,b=7,c=10;
c=a==b;
printf("%d",c);
return 0;
}
Join me on Facebook