How many times i value is checked in the following C program?


#include stdio.h
int main()
{
int i = 0;
while (i 3)
i++;
printf("In while loop\n");
}

Posted on by