what is the output of the following c program?
#includestdio.h
void main()
{
int a=0,b=1,c;
if(a&&(b=5))
c=1;
else
c=2;
printf("%d %d %d",a,b,c);
}


Posted on by