πŸ“Š C Programming
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");
    }
  • (A) 2
  • (B) 3
  • (C) 4
  • (D) 1
πŸ’¬ Discuss
βœ… Correct Answer: (C) 4

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
221
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Monu Rathod
Publisher
πŸ“ˆ
86%
Success Rate