PROGRAM TO DISPLAY ARITHMETIC OPERATOPRS USING SWITCH CASE
/*PROGRAM TO DISPLAY ARITHMETIC OPERATOPRS USING SWITCH CASE*/ #include<stdio.h> #include<conio.h> void main() { char n; clrscr(); printf(“Enter any arithmetic operator: “); scanf(“%c”,&n); switch(n) { case ‘+’: printf(“\nThe entered operator is …