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