1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
for (int k = 0; k < 1; k++)
printf("Executed In for loop n");
}

A. Executed In for loop
B. Depends on the compiler
C. Compilation Error
D. Depends on the standard compiler implements
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs