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