Examveda
Examveda

How many times i value is checked in the following C code?
#include <stdio.h>
int main()
{
    int i = 0;
    while (i < 3)
        i++;
    printf("In while loop\n");
}

A. 2

B. 3

C. 4

D. 1

Answer: Option C


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures