a program in C  to determine the season based on the month using if else statements.

Explanation
The program first prompts the user to enter a month (1-12).
It then reads the input month from the user.
The program uses nested 'if-else' statements to determine the season based on the input month.
If the input month is within the valid range (1-12), it checks which season the month falls into and prints the corresponding season.
If the input month is not within the valid range, it prints an error message indicating that an invalid month was entered.


Previous :-->> 17.Write a program to in C check if a character is uppercase or lowercase using 'switch-case'. 
NEXT: 19.Develop a program in C to perform basic arithmetic operations based on user input using 'switch-case'.
-->>ALL Conditionl statements Programs