Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • C++ Data Types
  • C++ Input/Output
  • C++ Arrays
  • C++ Pointers
  • C++ OOPs
  • C++ STL
  • C++ Interview Questions
  • C++ Programs
  • C++ Cheatsheet
  • C++ MCQ
  • C++ Projects
  • C++ Exception Handling
  • C++ Memory Management
Open In App
Next Article:
C++ While Loop
Next article icon

for Loop in C++

Last Updated : 19 May, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

In C++, for loop is an entry-controlled loop that is used to execute a block of code repeatedly for the given number of times. It is generally preferred over while and do-while loops in case the number of iterations is known beforehand.

Let's take a look at an example:

C++
#include <bits/stdc++.h> using namespace std;  int main() {    	// for loop to print "Hi" 5 times     for (int i = 5; i < 10; i++) {       	cout << "Hi" << endl;     }        return 0; } 

Output
Hi Hi Hi Hi Hi 

In the above program, for loop prints the text "Hi" 5 times. It starts with the loop variable i set to 0 and increments i by 1 after each iteration. The loop continues as long as i is less than 5, so it runs for i values 0, 1, 2, 3, and 4, printing "Hi" in each iteration.

for Loop Syntax

The syntax of for loop in C++ is shown below:

C++
for ( initialization; test condition; updation) {      // body of for loop } 

where,

  • Initialization: Initialize the loop variable to some initial value.
  • Test Condition: This specifies the test condition. If the condition evaluates to true, then body of the loop is executed, and loop variable is updated according to update expression. If evaluated false, loop is terminated.
  • Update Expression: After executing the loop body, this expression increments/decrements the loop variable by some value.

Note: The loop variable can also be declared in the initialization section but the scope of the loop variables that are declared in the initialization section is limited to the for loop block.

Working of a for Loop in C++

The working of for loop is as shown below:

  1. Initialization: Control enters the loop, and initialization is done.
  2. Condition Check: The condition is tested.
    1. If true, the flow enters the loop body.
    2. If false, the loop terminates, and control exits the loop.
  3. Execution of Body: The statements inside the body of the loop are executed.
  4. Update: The loop variable is updated.
  5. Repeat: The flow returns to Step 2 (Condition Check) for the next iteration.
  6. Exit: Once the condition becomes false, the loop terminates, and control exits the loop.

Flowchart of for Loop

flowchart of for loop in C++
Flowchart of for Loop in C++

Examples of for Loop

The below examples demonstrate how to use the for loop in a C++ program along with the different possible variations of the loop.

Print Numbers in Reverse Order

C++
#include <iostream> using namespace std;  int main() {        	// Initial value of number     int n = 5;      	// Initialization of loop variable     int i;     for (i = n; i >= 1; i--)         cout << i << " ";     return 0; } 

Output
5 4 3 2 1 

In the above program, the loop variable i is iterated from n to 1 and in each test condition is checked (is i>=1). If true then it prints the value of i followed by a space and decrement i. When the condition is false loop terminates.

You may have noticed that we have not used braces {} in the body of the loop. We can skip braces {} till there is only one statement in the loop.

Print a Square Pattern using Nested Loops

C++
#include <iostream> using namespace std;  int main() {   	     // Outer loop to print each row     for (int i = 0; i < 4; i++) {          // Inner loop to print each        	// character in each row         for (int j = 0; j < 4; j++) {             cout << "*" << " ";         }         cout << endl;     }      	return 0; } 

Output
* * * *  * * * *  * * * *  * * * *  

The above program uses nested for loops to print a 4x4 matrix of asterisks (*). Here, the outer loop (i) iterates over rows and the inner loop (j) iterates over columns. In each iteration, inner loop prints an asterisk, and a space. Also, a new line is added after each row is printed to shift the output to the next line.

Use Multiple Loop Variables in for Loop

C++
#include <iostream> using namespace std;  int main() {        // Defining two variable     int m, n;      // Loop having multiple variable and updations     for (m = 1, n = 1; m <= 3; m += 1, n += 2) {         cout << "iteration " << m << endl;         cout << "m is: " << m << endl;         cout << "j is: " << n << endl;     }      return 0; } 

Output
iteration 1 m is: 1 j is: 1 iteration 2 m is: 2 j is: 3 iteration 3 m is: 3 j is: 5 

The above program uses for loop with multiple variables (here m and n). It increments and updates both variables in each iteration and prints their respective values.

Infinite for Loop

When no parameters are given to the for loop, it repeats endlessly due to the lack of input parameters, making it a kind of infinite loop.

C++
#include <iostream> using namespace std;  int main() {   	     // Skip Initialization, test      // and update conditions   	// for infinite for loop     for (;;) {         cout << "gfg" << endl;     }        return 0; } 


Output

gfg
gfg
.
.
.
infinite times

Other Types of for Loop in C++

The above explained for loop is the actual legacy for loop that has been the part of the language since the beginning. But the different versions of for loop were added later in the languages. They are:

1. Range-Based for Loop in C++

C++ range-based for loops execute for loops over a range of values, such as all the elements in a container, in a more readable way than the traditional for loops. It is much simpler as compared to traditional for loop. But the disadvantage of this is that it has limited applications.

Example:

C++
#include <bits/stdc++.h> using namespace std;  int main() {     int nums[] = {1, 2, 3, 4, 5};      // Range-based for loop to print      // elements of the an array     for (int num : nums)         cout << num << " ";      return 0; } 

Output
1 2 3 4 5 

In the above code, we use a range-based for loop to print each element of the array, which automatically handles the iteration without requiring explicit variables to update or check conditions, unlike a traditional for loop where you need to manually manage the index and loop condition.

2. for_each Loop in C++

C++ for_each loop is not a loop but an algorithm that mimics the range based for loop. It accepts a function that executes over each of the container elements. This loop is defined in the header file <algorithm> and hence has to be included for the successful operation of this loop.

Example:

C++
#include <bits/stdc++.h> using namespace std;  void print(int num) {     cout << num << " "; }  int main() {     int nums[] = {1, 2, 3, 4, 5};      // Using for_each to print      // each element of the array     for_each(begin(nums), end(nums), print);      return 0; } 

Output
1 2 3 4 5 

In the above code, we initializes an array nums with values {1, 2, 3, 4, 5}. It then uses for_each to apply the print function to each element, printing each number in the array.


Next Article
C++ While Loop

C

chinmoy lenka
Improve
Article Tags :
  • Misc
  • C++
  • CPP-Basics
Practice Tags :
  • CPP
  • Misc

Similar Reads

    C++ Tutorial | Learn C++ Programming
    C++ is a popular programming language that was developed as an extension of the C programming language to include OOPs programming paradigm. Since then, it has become foundation of many modern technologies like game engines, web browsers, operating systems, financial systems, etc.Features of C++Why
    5 min read
    Setting up C++ Development Environment
    C++ is a general-purpose programming language and is widely used nowadays for competitive programming. It has imperative, object-oriented, and generic programming features. C++ runs on lots of platforms like Windows, Linux, Unix, Mac, etc. Before we start programming with C++. We will need an enviro
    8 min read
    Writing First C++ Program - Hello World Example
    The "Hello World" program is the first step towards learning any programming language and is also one of the most straightforward programs you will learn. It is the basic program that demonstrates the working of the coding process. All you have to do is display the message "Hello World" on the outpu
    4 min read
    C++ Variables
    In C++, variable is a name given to a memory location. It is the basic unit of storage in a program. The value stored in a variable can be accessed or changed during program execution.Creating a VariableCreating a variable and giving it a name is called variable definition (sometimes called variable
    4 min read
    C++ Data Types
    Data types specify the type of data that a variable can store. Whenever a variable is defined in C++, the compiler allocates some memory for that variable based on the data type with which it is declared as every data type requires a different amount of memory.C++ supports a wide variety of data typ
    7 min read
    Operators in C++
    C++ operators are the symbols that operate on values to perform specific mathematical or logical computations on given values. They are the foundation of any programming language.Example:C++#include <iostream> using namespace std; int main() { int a = 10 + 20; cout << a; return 0; }Outpu
    9 min read
    Basic Input / Output in C++
    In C++, input and output are performed in the form of a sequence of bytes or more commonly known as streams.Input Stream: If the direction of flow of bytes is from the device (for example, Keyboard) to the main memory then this process is called input.Output Stream: If the direction of flow of bytes
    5 min read

    Decision Making in C++

    Decision Making in C (if , if..else, Nested if, if-else-if )
    In C, programs can choose which part of the code to execute based on some condition. This ability is called decision making and the statements used for it are called conditional statements. These statements evaluate one or more conditions and make the decision whether to execute a block of code or n
    7 min read
    C++ if Statement
    The C++ if statement is the most simple decision-making statement. It is used to decide whether a certain statement or block of statements will be executed or not executed based on a certain condition. Let's take a look at an example:C++#include <iostream> using namespace std; int main() { int
    3 min read
    C++ if else Statement
    The if statement alone tells us that if a condition is true it will execute a block of statements and if the condition is false, it won’t. But what if we want to do something else if the condition is false. Here comes the C++ if else statement. We can use the else statement with if statement to exec
    3 min read
    C++ if else if Ladder
    In C++, the if-else-if ladder helps the user decide from among multiple options. The C++ if statements are executed from the top down. As soon as one of the conditions controlling the if is true, the statement associated with that if is executed, and the rest of the C++ else-if ladder is bypassed. I
    3 min read
    C++ Nested if-else Statement
    Nested if-else statements are those statements in which there is an if statement inside another if else. We use nested if-else statements when we want to implement multilayer conditions (condition inside the condition inside the condition and so on). C++ allows any number of nesting levels.Let's tak
    3 min read
    Switch Statement in C++
    In C++, the switch statement is a flow control statement that is used to execute the different blocks of statements based on the value of the given expression. It is an alternative to the long if-else-if ladder which provides an easy way to execute different parts of code based on the value of the e
    5 min read
    Jump statements in C++
    Jump statements are used to manipulate the flow of the program if some conditions are met. It is used to terminate or continue the loop inside a program or to stop the execution of a function.In C++, there is four jump statement:Table of Contentcontinue Statementbreak Statementreturn Statementgoto S
    4 min read

    C++ Loops

    C++ Loops
    In C++ programming, sometimes there is a need to perform some operation more than once or (say) n number of times. For example, suppose we want to print "Hello World" 5 times. Manually, we have to write cout for the C++ statement 5 times as shown.C++#include <iostream> using namespace std; int
    7 min read
    for Loop in C++
    In C++, for loop is an entry-controlled loop that is used to execute a block of code repeatedly for the given number of times. It is generally preferred over while and do-while loops in case the number of iterations is known beforehand.Let's take a look at an example:C++#include <bits/stdc++.h
    6 min read
    C++ While Loop
    In C++, the while loop is an entry-controlled loop that repeatedly executes a block of code as long as the given condition remains true. Unlike the for loop, while loop is used in situations where we do not know the exact number of iterations of the loop beforehand as the loop execution is terminate
    3 min read
    C++ do while Loop
    In C++, the do-while loop is an exit-controlled loop that repeatedly executes a block of code at least once and continues executing as long as a given condition remains true. Unlike the while loop, the do-while loop guarantees that the loop body will execute at least once, regardless of whether the
    4 min read
    Range-Based for Loop in C++
    In C++, the range-based for loop introduced in C++ 11 is a version of for loop that is able to iterate over a range. This range can be anything that is iteratable, such as arrays, strings and STL containers. It provides a more readable and concise syntax compared to traditional for loops.Let's take
    3 min read
    Functions in C++
    A function is a building block of C++ programs that contains a set of statements which are executed when the functions is called. It can take some input data, performs the given task, and return some result. A function can be called from anywhere in the program and any number of times increasing the
    9 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences