1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
double L = 0;
for (L = 0.0; L < 5.0; L++);
printf("%f n", L);
}

A. 1.000000
B. 2.000000
C. 3.000000
D. 5.000000
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs