Q73
What will be the output of the following C code? #include int main() int x = 0; if (x == 1) if (x >= 0) printf("true "); else printf("false ");
A.
true
B.
false
C.
Depends on the compiler
D.
No print statement
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board