Kizspy | Question: 21
(Choose 1 answer)
What does the following code print?
int x = 10;
if (x = 0)
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.