What will be the output of the following code?
#includestdio.h
void main()
{
int x=1, y=0, z=5;
int a= x &&y || z++;
printf("%d",z);
return 0;
}


Posted on by