C program Write a menu driven program using switch-case statement which read two integers (a and b) and a choice entered by the user and display arithmetic of the two numbers according to following conditions using if else condition code example
Example: c switch case example
switch (variable or an integer expression)
{
case constant:
//C Statements
;
case constant:
//C Statements
;
default:
//C Statements
;
}