Report Bug
Qus : Which of the following is the correct syntax for a for loop in C?
Qus Which of the following is the correct syntax for a for loop in C?

A. for (int i = 0; i < 10; i++)
B. for i = 0 to 10 step 1
C. for (i = 0; i < 10; i++)
D. for (i < 10; i++)


Solution
A. for (int i = 0; i < 10; i++)






Report Bug