✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What does the following program print to the screen?
int main (){
int x = 0, y = 1;
if (x || !y)
printf("1");
else if (y && x)
printf("2");
else
printf("3");
}