Vidyalelo
C Programming · Q88

Control Structures

Programming · C Programming · question 88

Q88

What will be the output of the following C code? #include int main() int a = 0, i = 0, b; for (i = 0;i < 5; i++) a++; continue;

A.
2
B.
3
C.
4
D.
5
Answer

Answer: Option D

Solution

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