C++

Nested if in C++ Programming Language

Nested if in C++ programming Language

In this tutorial, we will discuss the Nested if in C++ language

In C++, use of if statement in another if block or another else block is known as nesting if. So, it can be used in more than one if block in one program.

Syntex

Syntax

 

Flow diagram

In the above diagram, first,The outer-if statements evaluates the test expression(boolean expression)

When the test expression is evaluated to true codes inside the body of outer-if is executed and the statements inside the body of outer-else are skipped

Then the control moves to inner-if to check test expression

When the test expression is evaluated to true codes inside the body of inner-if is executed and body of inner-else are skipped

when the test expression is evaluated to false inside the body of inner if is skipped and inside the body of inner-else are executed

 

Example 1

Example

 

When we executed the above program, it produced the following result

your marks is enougn
you can enter university

Program 2

Example

 

When we executed the above program, it produced the following result

you are pass

Similar post

If statement in C++ language

If statements in Java language

If statements in Python programming

If statement in C language

Karmehavannan

Recent Posts

Subtract two numbers using method overriding

Subtract two numbers using method overriding   Program 1

3 months ago

PHP Star triangle Pattern program

PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…

3 months ago

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

1 year ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

1 year ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

1 year ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

1 year ago

This website uses cookies.