a program in C language  to find the maximum of three numbers using nested if else  statements.

Explanation
1. The program starts by declaring three integer variables num1, num2 and num3 to store the input numbers.
2. The user is prompted to enter three numbers which are then read using scanf.
3. The program uses nested 'if-else' statements to compare the three numbers and find the maximum among them.
4. The outer if-else statement checks if num1 is greater than or equal to num2. If true it further checks if num1 is greater than or equal to num3. If true it prints num1 as the maximum number. If false it prints num3 as the maximum number.
5. If the outer if-else statement is false it means num2 is greater than num1. It then checks if num2 is greater than or equal to num3. If true, it prints num2 as the maximum number. If false, it prints num3 as the maximum number.
6. Finally, the program returns 0 to indicate successful execution.


Previous :-->> 13.Develop a program in C language to check if a number is positive, negative, or zero using if else statements. 
NEXT: 15.Create a program in C to convert temperature from Celsius to Fahrenheit or vice versa using switch case.
-->>ALL Conditionl statements Programs