1.

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

}

A. 3
B. 4
C. 5
D. 6
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs