C program to find arithmetic operations using switch case

C program to find arithmetic operations using switch case

Output:

Enter the numbers followd by arithmetic operators(+,-,*,/,%):
Eg: 5 6 +
5 6 +
Sum = 11

Implementation: