Nested if else in C

Here you will learn about nested if else in C

In the previous tutorial we have learnt about if-else statements. Those statements provide the flexibility to check for two possible faces of answer. But it is also possible that there will be more than two options for the answer. To make things more precise, take an example of school grading system. Suppose if you want to create a program that will print the grade of student based on his/her percentage marks. Then in that case you will need at least 4 conditions to check.So to put those things on work we have to use nested if-else statements.

Nested if else in C

As the name suggests, nesting means writing if-else statements inside another if or else block. Basically there is no limit of nesting. But generally programmers nest up to 3 blocks only.

General form of nested if-else statements is given below.

It’s a bit complex structure for beginners so lets try to understand its general form.

As you can see, I have nested another if-else block inside one else block. So while executing in this form. The compiler first check the condition if (primary or first) block. If it fails then it will move on to the else block. In the else block it will check the condition of secondary if statement, if it also fails then it will execute the statements under else block.

In our general form I have nested if-else block in else block. You can also nest that if-else statement under first if statement. This will also work.

Now lets try implement our knowledge in one program.

Question: Take one number from the user. Check it whether it is negative, zero or positive and print the message for it.

Output

Nested if-else in C - Output

Explanation

I have deliberately written that program which is similar to the last one. As I want to show the importance of if-else nesting inside C programming.

Initial statements of the program are self-explainable. So I will start my explanation with if-else statement.

  • In the first if statement, I have given a condition i.e. num<0, it will check the number whether it is negative or not. If it is negative then it will print the message “number is negative”. But if condition fails then it will skip the statements under if block.
  • Am I forget to write curly braces {} after if statement? The program will also work by dropping them in our case. This is because the default scope of if statement is one statement after it. As I have written only one statement, so there is no need to use curly braces in it. However if you write more than one statements under that block then you have to insert curly braces.
  • After that I gave another else block. And inside that else block I have nested one if-else block. It means after entering the control inside else block it will check the condition of 2nd if block. If the condition turns out to be true then it will print the message “number is 0”. Otherwise the control will transfer to the else block and it will print “number is positive”.
  • In the above program you can clearly see the secondary if-else block. Because I have indented the 2nd if-else block to increase the readability of program. So it is advised to use indentation while using nested if-else.

Comment below if you have queries or found anything incorrect in above tutorial for nested if else in C.

3 thoughts on “Nested if else in C”

  1. Write a program to compare three characters according to their alphabetical order..?
    Note:if user enters a character or number it should print the entered character as output and displace the message as wrong when it is a number…
    Sir,, please program it

Leave a Comment

Your email address will not be published. Required fields are marked *