Report Bug
Qus :

What will the following code print?

int x = 5;
if (x = 0)
printf("Zero");
else
printf("Not zero");

Qus

A. Zero
B. Not zero
C. Compilation error
D. Error


Solution
B. Not zero






Report Bug