Vidyalelo
C Programming · Q76

Control Structures

Programming · C Programming · question 76

Q76

How many times i value is checked in the following C code? #include int main() int i = 0; while (i < 3) i++; printf("In while loop ");

A.
2
B.
3
C.
4
Answer
D.
1

Answer: Option C

Solution

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