#include int main() { int x = 5; if (x > 10) { printf("x is greater than 10"); } else { printf("x is less than or equal to 10"); } return 0; }
Answer: B
Explanation: The if statement checks if x is greater than 10, which it is not. Therefore, the code inside the else block is executed, resulting in the output "x is less than or equal to 10".