A

Admin • 833K Points
Coach

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
");
}
  • (A) 2
  • (B) 3
  • (C) 4
  • (D) 1
  • Correct Answer - Option(C)
  • Views: 21
  • Filed under category C Programming
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.