Vidyalelo
C Programming · Q73

Control Structures

Programming · C Programming · question 73

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
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board