Predict the output of the following code and comment out the reason for the preferred output.
#include stdio.h
void main()
{
int x=5;
x=x==5 || x++;
printf("%d",x);
}


Posted on by