Hello friends! Welcome to my blog
Today we discuss How to use switch case conditional statement in c and how to program switch case in c programming examples
What is a switch Case?
Switch case in c programming example
#include
main()
{
char op;
long a,b;
clrscr();
printf(“Enter two number to calculate: n”);
scanf(“%lt%l”,&a,&b);
printf(“Please chooese a operator +, -, *, /”);
scanf(“%f”,&op);
switch(op)
{
case ‘+’:
printf(“%l + %l = %l”,a,b,a+b);
break;
case ‘-‘:
printf(“%l – %l = %l”,a,b,a-b);
break;
case ‘*’:
printf(“%l * %l = %l”,a,b,a*b);
break;
case ‘/’:
printf(“%l / %l = %l”,a,b,a/b);
break;
default:
printf(“Enter valid operatorn”);
}
getch();
}
10 4
Please choose a operator +, -, *, /
+
10 + 4 =14
I make this programming and hope you are like the post if are you like the post you can please comment and share the post to reach more people.
If any doubt about this c programming code or input & output please comment below
If you have another question about c programming send an email by contacting us form is given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut
Please any query email programmingshortcut@gmail.com
Please comment on your experience on this post,
Thank You!