ExamVeda
Login
Home
This question belongs to C Program Control Structures
Control Structures
?

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

Answer & Solution
Correct Answer: Option D
Let's discuss the solution. Join the discussion
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.