C Nested if...else Statement

You are Here:

C Nested if...else Statement

When a series of decisions are involved, we may have to use more than one if...else statement in nested form.

Example Program

In the below example program, we will display the biggest of three numbers.

Source Code

C Compiler
#include <stdio.h> int main() { int a = 10, b = 50, c = 30; if(a > b){ if(a > c){ printf("A is greater than B and C."); } else{ printf("C is greater than A and B."); } } else{ if(b > c){ printf("B is greater than A and C."); } else{ printf("C is greater than A and B."); } } return 0; }

Output

B is greater than A and C.
congratulation

Congratulation! you have learned everything about Nested if...else statement in C Programming.

Reminder

Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.

We are working to cover every Single Concept in C.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author