Computer Science, asked by uwisjjfiesi, 5 months ago

Syntax of for loop?

Answers

Answered by chsaiphaneendra
4

Answer:

For( initialization; condition; increment or decrement)

{

Body

}

Example:

For(i=0; i<5; i++)

{

Printf("hello");

}

Similar questions