Kizspy | Question: 25 (Choose 1 answer)
FUOVERFLOW
int x = 10:if (x = 0)
What does the following code print?
printf("Zero");
else
printf("Non-zero");
A. Runs and prints "Non-zero".
B. Compiler error.
C. Runs but prints nothing.
D. Runs and prints garbage value.
E. Runs and prints "Zero".
F. Runtime error.