Vidyalelo
C Programming · Q90

Control Structures

Programming · C Programming · question 90

Q90

What will be the output of the following C code? #include int main() int i = 0; while (i = 0) printf("True "); printf("False ");

A.
True (infinite time)
B.
True (1 time) False
C.
False
Answer
D.
Compiler dependent

Answer: Option C

Solution

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