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
CBSE - Class 11
103+ articles
CPP-Basics
102+ articles
C Basics
78+ articles
cpp-switch
8+ articles
C Decision Making
4+ articles
CPP-Control-Flow
7 posts
Recent 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
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
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
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
Misc
C++
CPP-Control-Flow
Decision Making in C (if , if..else, Nested if, if-else-if )
Last Updated: 29 June 2026
Conditional statements are used to execute different blocks of code based on whether a specified condition is true or false.They evaluate one or more conditions before mak...
read more
C Language
C Basics
CPP-Basics
CBSE - Class 11
CPP-Control-Flow
C Decision Making
✕