A for loop is a control flow statement used in programming to iterate a specific number of times or over a sequence (such as a range of values) to execute a block of code repeatedly.
for (initialization; condition; increment/decrement) { // code block to be executed }
Program.c
output.c
With supporting text below as a natural lead-in to additional content.