VOOZH
about
URL: https://www.geeksforgeeks.org/tag/cpp-control-flow/
⇱ CPP-Control-Flow Archives - GeeksforGeeks
👁 geeksforgeeks
Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
Misc
7.7K+ articles
C++
3.8K+ articles
C++ Programs
1.5K+ articles
C Language
1.3K+ articles
CPP-Basics
102+ articles
CBSE - Class 11
102+ articles
C Basics
78+ articles
cpp-switch
8+ articles
C Decision Making
4+ articles
How to Utilize the goto Statement in C++?
Last Updated: 23 July 2025
The goto statement in C++ is a control flow statement that allows the users to move the control flow from one part to another part of the program. In this article, we will...
read more
C++ Programs
C++
Picked
C-Loops & Control Structure
CPP-Control-Flow
CPP Examples
misc-cpp
C++ Nested if-else Statement
Last Updated: 13 February 2025
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 multila...
read more
👁 article_image
C++
Picked
CPP-Control-Flow
Fallthrough in C++
Last Updated: 23 July 2025
Fall through is a type of error that occurs in various programming languages like C, C++, Java, Dart …etc. It occurs in switch-case statements where when we forget to add ...
read more
Misc
C++ Programs
C++
CPP-Basics
cpp-switch
CPP-Control-Flow
Jump statements in C++
Last Updated: 15 June 2026
Jump statements in C++ are used to alter the normal flow of program execution by transferring control from one part of a program to another. They are commonly used in loop...
read more
👁 article_image
Technical Scripter
C++
Technical Scripter 2020
CPP-Control-Flow
C++ do while Loop
Last Updated: 12 December 2024
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 tr...
read more
👁 article_image
Misc
C++
CPP-Control-Flow
C++ While Loop
Last Updated: 17 June 2026
The while loop in C++ is an entry-controlled loop that executes a block of code repeatedly as long as a specified condition remains true. It is commonly used when the numb...
read more
👁 article_image
Misc
C++
CPP-Control-Flow
Decision Making in C (if , if..else, Nested if, if-else-if )
Last Updated: 22 April 2026
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 condi...
read more
👁 article_image
C Language
C Basics
CPP-Basics
CBSE - Class 11
CPP-Control-Flow
C Decision Making