What is the output of the following code?
#includestdio.h
int main()
{
int x=10;
int y=10;
if(! x^y)
printf("x is equal to y");
else
printf ("x is not equal to y");
return 0;
}

Posted on by