What is Control Statement in C? Types, Uses, and Code Examples
Updated on Mar 03, 2025 | 17 min read | 1.2k views
Share:
For working professionals
For fresh graduates
More
Updated on Mar 03, 2025 | 17 min read | 1.2k views
Share:
Table of Contents
A control statement in C is used to control the flow of execution based on certain conditions. These statements allow your code to make decisions, repeat actions, or jump to different parts of the program.
In this article, you’ll learn what a control statement is in c, how each control statement works and how to use them effectively in your C programs for better control and optimization.
In C programming, a control statement is a statement that directs the flow of program execution based on certain conditions. These statements are used to determine the order in which other statements are executed.
Control statements help structure your program in a way that allows it to make decisions, repeat actions, or jump to different parts of the code based on specific conditions.
For example, you might use a control statement to check if a user input is valid, or if a loop should continue running. They are essential for building programs that are interactive, flexible, and efficient.
Understanding the types of control statements in C and how to use them effectively is crucial to writing functional and efficient programs. Let’s explore why they matter:
Now that you understand the basics, let’s dive into the different types of control statements in C and see how each one works with real-world examples.
In this section, you’ll explore the main categories of control statements in C. These include decision control statements for making choices, loop control statements for repeating actions, and jump control statements for directing the program flow.
Each category includes examples to show how to use them.
In C programming, decision control statements are used to make decisions based on specific conditions. These statements allow the program to choose different paths based on whether a condition is true or false.
They are a core concept in the types of control statements in C, and understanding them will help you write dynamic and interactive programs.
The most common decision control statements in C are the if statement, if-else statement, nested if, and the else-if ladder. Let's break them down one by one.
The if statement evaluates a condition, and if it’s true, the code block inside it executes. If the condition is false, the program moves on to the next statement.
Syntax:
if (condition) {
// Code to be executed if the condition is true
}
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int number = 5;
if (number > 0) {
printf("The number is positive.\n");
}
return 0;
}
Output:
The number is positive.
Also Read: Control Statements in Java: What Do You Need to Know in 2024
The if-else statement works similarly to the if statement, but provides an alternative code block to execute if the condition is false.
Syntax:
if (condition) {
// Code if condition is true
} else {
// Code if condition is false
}
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int number = -3;
if (number > 0) {
printf("The number is positive.\n");
} else {
printf("The number is negative or zero.\n");
}
return 0;
}
Output:
The number is negative or zero.
A nested if statement occurs when one if statement is placed inside another if. This allows you to evaluate multiple conditions.
Syntax:
if (condition1) {
if (condition2) {
// Code to be executed if both conditions are true
}
}
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int age = 20;
if (age >= 18) {
if (age < 21) {
printf("You are an adult but not yet 21.\n");
} else {
printf("You are 21 or older.\n");
}
}
return 0;
}
Output:
You are an adult but not yet 21.
The else-if ladder is used when you need to test multiple conditions. It’s a sequence of if statements, each checking a different condition. When a condition is true, the corresponding block of code runs, and the rest are ignored.
Syntax:
if (condition1) {
// Code if condition1 is true
} else if (condition2) {
// Code if condition2 is true
} else if (condition3) {
// Code if condition3 is true
} else {
// Code if none of the conditions are true
}
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int number = 10;
if (number < 0) {
printf("The number is negative.\n");
} else if (number == 0) {
printf("The number is zero.\n");
} else {
printf("The number is positive.\n");
}
return 0;
}
Output:
The number is positive.
The switch statement in C is a decision control statement that allows you to choose between multiple options based on the value of a variable or expression.
It is especially useful when you have a single variable that could match multiple possible values, and you need to execute different blocks of code depending on the matching value.
Syntax:
switch (expression) {
case value1:
// Code to be executed if expression == value1
break;
case value2:
// Code to be executed if expression == value2
break;
case value3:
// Code to be executed if expression == value3
break;
default:
// Code to be executed if expression doesn't match any case
}
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int day = 3;
// Switch statement to print the name of the day based on its number
switch (day) {
case 1:
printf("Monday\n");
break;
case 2:
printf("Tuesday\n");
break;
case 3:
printf("Wednesday\n");
break;
case 4:
printf("Thursday\n");
break;
case 5:
printf("Friday\n");
break;
case 6:
printf("Saturday\n");
break;
case 7:
printf("Sunday\n");
break;
default:
printf("Invalid day\n");
}
return 0;
}
Output:
Wednesday
Explanation:
Also Read: What is a Switch Case in Java & How to Use It?
Now that you've mastered decision-making let's explore how conditional statements in C can fine-tune those choices and add more flexibility to your code.
In C programming, the conditional statement is a powerful tool that helps control the flow of your program based on conditions. One of the most common types of decision control statements in C is the conditional operator (also called the ternary operator).
This statement is a concise way of making decisions in a single line, which is particularly useful for simple conditions.
The syntax of the conditional operator is as follows:
(condition) ? expression_1 : expression_2;
Let’s dive deeper with an example to make this concept clearer.
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int num1 = 10, num2 = 5;
// Conditional operator to find the larger number
int larger = (num1 > num2) ? num1 : num2; // If num1 is greater than num2, assign num1 to 'larger'; otherwise, assign num2.
printf("The larger number is: %d\n", larger); // Output the result
return 0;
}
Output:
The larger number is: 10
Explanation:
In this case, since num1 is greater than num2, the value of larger becomes 10, which is then printed to the screen.
Why use the conditional statement in C?
The conditional statement in C is most useful in cases where you need to assign values based on simple conditions. It simplifies your code and makes it easier to understand, especially for simple checks like finding the larger number or choosing between two options.
Now that you’ve made decisions, let’s take control of repetition with loop statements to keep things running smoothly.
In C programming, loop control statements are essential when you need to repeat a block of code multiple times based on certain conditions. These loops allow your program to handle repetitive tasks efficiently without having to write redundant code.
Let’s dive into each of them, understand their syntax, and explore examples.
The while loop continues executing as long as the specified condition remains true. The condition is checked before executing the loop body, so if the condition is false initially, the body may not run at all.
Syntax:
while (condition) {
// Code to be executed as long as the condition is true
}
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int count = 1;
// While loop to print numbers 1 to 5
while (count <= 5) { // Condition: keep running as long as count is <= 5
printf("%d ", count); // Print current value of count
count++; // Increment count by 1
}
return 0;
}
Output:
1 2 3 4 5
Explanation:
Also Read: While Loop in Python [With Syntax and Examples]
The do-while loop is similar to the while loop, but with one key difference: the condition is checked after the loop body is executed. This means the loop body will always run at least once, even if the condition is false initially.
Syntax:
do {
// Code to be executed
} while (condition);
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int count = 6;
// Do-while loop to print numbers 1 to 5
do {
printf("%d ", count); // Print current value of count
count++; // Increment count by 1
} while (count <= 5); // Condition is checked after loop execution
return 0;
}
Output:
6
Explanation:
The for loop is used when you know the number of iterations beforehand. It combines the initialization, condition-checking, and increment/decrement in a single line. It is ideal for looping through arrays or repeating tasks a set number of times.
Syntax:
for (initialization; condition; increment) {
// Code to be executed
}
Flowchart:
Example Code:
#include <stdio.h>
int main() {
// For loop to print numbers 1 to 5
for (int count = 1; count <= 5; count++) { // Initialization: count = 1, Condition: count <= 5, Increment: count++
printf("%d ", count); // Print current value of count
}
return 0;
}
Output:
1 2 3 4 5
Explanation:
With conditions and loops in place, it’s time to explore how jump statements can quickly change the course of your program.
Jump statements in C allow you to control the flow of your program by skipping parts of code or jumping to specific locations in the program. These statements are part of the types of control statements in C, and they provide you with flexibility when you need to exit loops early, skip iterations, or return from functions.
Let’s break down each of these jump statements and explore how they work with examples.
The break statement is used to exit from a loop or switch statement before the loop or switch has completed all iterations or cases. It’s commonly used when a specific condition is met, and you want to stop further processing.
Syntax:
break;
Flowchart:
Example Code:
#include <stdio.h>
int main() {
// For loop that breaks when count reaches 3
for (int count = 1; count <= 5; count++) {
if (count == 3) {
break; // Exit the loop when count is 3
}
printf("%d ", count); // Print current value of count
}
return 0;
}
Output:
1 2
Explanation:
The continue statement skips the current iteration of a loop and moves to the next iteration. It is often used when a certain condition is met, and you want to skip the rest of the code in that iteration.
Syntax:
continue;
Flowchart:
Example Code:
#include <stdio.h>
int main() {
// For loop that skips printing 3
for (int count = 1; count <= 5; count++) {
if (count == 3) {
continue; // Skip this iteration when count is 3
}
printf("%d ", count); // Print current value of count
}
return 0;
}
Output:
1 2 4 5
Explanation:
Also Read: Python Break, Continue & Pass Statements [With Examples]
The goto statement is used to jump to a specific label within your program. While it provides direct control over the flow, it should be used sparingly, as it can make your code harder to read and maintain.
Syntax:
goto label;
label:
// Code to be executed after jump
Flowchart:
Example Code:
#include <stdio.h>
int main() {
int num = 5;
// If num is less than 10, jump to 'end' label
if (num < 10) {
goto end; // Jump directly to the end label
}
printf("This will be skipped.\n");
end: // Label for jump
printf("This is where the program jumps to.\n");
return 0;
}
Output:
This is where the program jumps to.
Explanation:
The return statement is used to exit a function and optionally return a value to the calling function. This is commonly used to signal the end of a function's execution and return control to the calling code.
Syntax:
return value;
Flowchart:
Example Code:
#include <stdio.h>
int add(int a, int b) {
return a + b; // Return the sum of a and b
}
int main() {
int result = add(3, 4); // Call the add function
printf("The sum is: %d\n", result); // Output the result
return 0;
}
Output:
The sum is: 7
Explanation:
Now that you've seen each control statement in action, let's compare them side by side to understand their strengths and when to use each.
In C programming, each control statement serves a unique purpose, and choosing the right one depends on the task at hand.
Control Statement |
Purpose |
Condition Type |
Use Case |
if-else | Decision-making based on a condition | Single condition (true/false) | Used for simple true/false conditions, like validating input or checking flags. |
switch | Multi-way decision based on a variable's value | Multiple values for one variable | Used for checking multiple possible values of a single variable (e.g., menu selection). |
for loop | Repeating a task a set number of times | Range or counter condition | Iterating through a collection or repeating a task for a fixed number of times. |
while & do-while loop | Repeating a task based on a condition | True/false condition | While is used when the number of iterations is unknown, do-while ensures at least one iteration. |
Now that you know how control statements work, let’s explore their pros and cons to understand when and why to use them effectively.
Control statements are essential tools in C programming, allowing you to define the flow of execution. But like any tool, they come with their own set of advantages and disadvantages.
Advantages
Control statements allow your program to make decisions, repeat tasks, or even jump to different parts of the code.
Advantage |
Explanation |
Flexibility | Control statements allow your program to adapt to various conditions dynamically. |
Efficiency | Loops and conditional statements help reduce code redundancy, improving performance. |
Readability | Well-organized control structures make your code clearer and easier to follow. |
Optimal Resource Usage | Efficient loops and decision-making reduce unnecessary computations, optimizing program performance. |
Disadvantages
While control statements bring flexibility and efficiency, they also come with some limitations. Misusing them or choosing the wrong type of control statement can make your code more complex, difficult to maintain, or inefficient.
Disadvantage |
Explanation |
Overuse of if-else | Too many nested or complex if-else statements make your code harder to read, debug, and maintain. |
Complexity | Using multiple nested control statements can result in difficult-to-follow and error-prone code. |
Performance Issues | Inefficient control flow, especially in loops, can slow down the program, especially with large data sets. |
Code Duplication | Repetitive control statements across your program can lead to code duplication, increasing maintenance overhead. |
The right control statement can greatly improve the performance, readability, and efficiency of your program. Just be cautious of their limitations, especially when dealing with complex conditions and large data sets.
upGrad is your go-to partner for mastering essential programming concepts for a successful software development career. With over 10 million learners and 200+ industry-driven courses, upGrad equips you with the skills to stay competitive.
Whether you're advancing in C programming, decision-making, or system design, upGrad helps build a solid foundation for your career.
Here are the top courses:
You can also get personalized career counseling with upGrad to guide your career path, or visit your nearest upGrad center and start hands-on training today!
Boost your career with our popular Software Engineering courses, offering hands-on training and expert guidance to turn you into a skilled software developer.
Master in-demand Software Development skills like coding, system design, DevOps, and agile methodologies to excel in today’s competitive tech industry.
Stay informed with our widely-read Software Development articles, covering everything from coding techniques to the latest advancements in software engineering.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
India’s #1 Tech University
Executive PG Certification in AI-Powered Full Stack Development
77%
seats filled
Top Resources