What is the output of the following code?
#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