a program in C language to perform basic arithmetic operations based on user input using switch case statement.

Explanation
The program starts by declaring variables for the operator, num1, and num2.
It prompts the user to enter an operator (+, -, *, /) and two numbers.
The switch-case statement is used to perform the corresponding arithmetic operation based on the operator entered by the user.
If the user enters an invalid operator, an error message is displayed.
The program then prints the result of the arithmetic operation or an error message if division by zero is attempted.


Previous :-->> 18.Create a program in C to determine the season based on the month using 'if-else' statements. 
NEXT: 20. C language program to check if a given character is a special character of digit using if else statement.
-->>ALL Conditionl statements Programs