Data Structure
Java
Python
HTML
Interview Preparation
Interview Prep
Tutorials
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
C Language
1.3K+ articles
CPP-Basics
102+ articles
CBSE - Class 11
102+ articles
C Basics
78+ articles
C-Operators
40+ articles
CPP-Control-Flow
7+ articles
C Decision Making
4 posts
Recent Articles
Popular Articles
Logical Expressions and Short-Circuit Evaluation in C
Last Updated: 07 November 2025
In C, logical expressions are used to perform decision-making using logical operators such as (AND) or || (OR) by combining multiple conditions. These expressions return ...
read more
C Language
C-Operators
C Decision Making
C - if Statement
Last Updated: 23 July 2025
The if in C is the simplest decision-making statement. It consists of the test condition and a block of code that is executed if and only if the given condition is true. ...
read more
C Language
C Basics
C Decision Making
C Program to Make a Simple Calculator
Last Updated: 20 August 2025
A simple calculator is a program that can perform addition, subtraction, multiplication, and division of two numbers provided as input. In this article, we will learn to c...
read more
C Programs
C Language
Picked
C Basic Programs
C Decision Making
Decision Making in C (if , if..else, Nested if, if-else-if )
Last Updated: 07 November 2025
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
C Language
C Basics
CPP-Basics
CBSE - Class 11
CPP-Control-Flow
C Decision Making