for loop in C
The for loop in C language is used to iterate the statements or a part of the program several times. It is frequently used to traverse the data structures like the array and linked list.
Syntax of for loop in C
The syntax of for loop in c language is given below:
Flowchart of for loop in C

C for loop Examples
Let's see the simple program of for loop that prints table of 1.
Output
1 2 3 4 5 6 7 8 9 10
C Program: Print table for the given number using C for loop
Output
Enter a number: 2 2 4 6 8 10 12 14 16 18 20
Enter a number: 1000 1000 2000 3000 4000 5000 6000 7000 8000 9000 10000