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