1.

How many times k value is checked in the following C code?
#include <stdio.h>
int main()
{
int k = 0;
do {
k++;
printf("Executed in while loop n");
} while (k < 5);
}

A. 1
B. 2
C. 3
D. 4
E. 5
Answer» F.


Discussion

No Comment Found

Related MCQs