How many times while loop condition is tested in the following C code snippets, if i is initialized to 0 in both the cases?
while (i < n)
i++;
————-
do
i++;
while (i <= n);
while (i < n)
i++;
————-
do
i++;
while (i <= n);A. n, n
B. n, n+1
C. n+1, n
D. n+1, n+1
Answer: Option D

Join The Discussion