1. Home
  2. C Programming
  3. Control Statements
  4. C – for loop

C – for loop

C – for Loop Statement

A loop is useful for running iterative tasks. Using a loop a program can execute code block for multiple times as required.

Mainly there are 3 types of loops available in C programming language. Where for loop is one of them. Below is the list if loop available.

  • for loop
  • while loop
  • do-while loop

for Loop

A for loop is the entry-restricted loop. Where a condition is checked before executing the code block.

If the condition evaluates to true, the block of code is executed and if the condition evaluates to false loop is terminated and control goes to just after the loop body.

Syntax:

for Loop Working

  • Step 1 – Loop start with the initialization process (first time only).
  • Step 2 – The conditions are checked. If the condition evaluates to false go to step 5. If the condition evaluates to true then continue to step 3.
  • Step 3 – Code block is executed.
  • Step 4 – Increment/Decrement Statement is executed and goto Step 2.
  • Step 5 – Exit loop

for Loop Example

A sample C programme to calculate the sum of 1 to 100 numbers using for loop.

Output:

Sum of 1-100 is 5050
Tags , ,