Predict the output for the following code
#include stdio.h

int main()
{
int n=0,a=3,b=12;
while(n=(a^b))
{
n++;
}
printf("n=%d",n);
return 0;
}

Posted on by