Vidyalelo
C Programming · Q135

Control Structures

Programming · C Programming · question 135

Q135

What will be the output of the following C code? #include int main() for (int i = 0;i < 1; i++) printf("In for loop ");

A.
Compile time error
B.
In for loop
C.
Depends on the standard compiler implements
Answer
D.
Run time error

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board