First page Back Continue Last page Overview Image

“for” loops in C

The syntax of for loop in c language is given below: .

for (initialization; condition/s; statement/s)

{

block;

}