Syntax of for loop?
Answers
Answered by
4
Answer:
For( initialization; condition; increment or decrement)
{
Body
}
Example:
For(i=0; i<5; i++)
{
Printf("hello");
}
Similar questions