Vidyalelo
C Programming · Q78

Control Structures

Programming · C Programming · question 78

Q78

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

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

Answer: Option B

Solution

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