Home
Explore
Places
win7
win8
Coding
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;
}
17
2013-02-08T07:19:00-08:00
cvs
prgm|