What is the output of the given code?
int main()
{
int x = 24; int y = 42;
int z = 37; int a = 22;
printf("%d",x&y^z|x~a );
}
Reveal answer
Fill a bubble to check yourself
What is the output of the given code?
int main()
{
int x = 24; int y = 42;
int z = 37; int a = 22;
printf("%d",x&y^z|x~a );
}