1.

How many times i value is checked in the below code?_x005F_x000D_        #include         int main()        {            int i = 0;            do {                i++;                printf( "In while loopn" );            } while (i < 3);        }

A. 2
B. 3
C. 4
D. 1
Answer» C. 4


Discussion

No Comment Found

Related MCQs