IDNLearn.com makes it easy to get reliable answers from knowledgeable individuals. Receive prompt and accurate responses to your questions from our community of knowledgeable professionals ready to assist you at any time.

Which for loop syntax is correct?
A. for {i=0, i<10, i++}
{code block}
B. for (i=0; i<10; i++);
{code block}
C. for (i=0; i<10; i++)
{code block}