Examveda
Examveda

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);

A. n, n

B. n, n+1

C. n+1, n

D. n+1, n+1

Answer: Option D


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures