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
AnswerC.
4
D.
1
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board