Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
No Result
View All Result
Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
Home Programs in c

Switch case program in c with example

admin by admin
February 4, 2019
Reading Time:3min read
0

RELATED POSTS

how to find quotient and remainder in c program

Difference between FOPs and OOPs

How to start learning the first programming language

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 switch Case?

Switch case is a multi-way conditional statement. It Works like as if else if nested conditional statement.But the Advantage of using Switch case over if else if nested conditional statement Management of switch case is easy
See Switch case example below that how work switch statement:

Switch case in c programming example


    #include<stdio.h>
    #include<conio.h>
    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();
     }

Output: Enter two number to calculate:
             10  4
Please chooese 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 are 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 your experience on this post,
Thank You!

      

ShareTweetPin
admin

admin

Related Posts

Programs in c

how to find quotient and remainder in c program

April 21, 2020
.Net

Difference between FOPs and OOPs

April 16, 2020
Programming Language

How to start learning the first programming language

February 9, 2020
Programs in c

C program to find whether the alphabet is a vowel or consonant

April 16, 2020
Programs in c

Reverse a number in c program

April 16, 2020
Programs in c

Sum of digits of a number until the sum is reduced to 1 digit in c

April 16, 2020
Next Post

The sum of digits and product of digits program in c++

sum and product of digit program in java

Popular Stories

  • Short name by java program

    0 shares
    Share 0 Tweet 0
  • Relation of two numbers in c programming

    0 shares
    Share 0 Tweet 0
  • How to find quotient and remainder in c++ program

    0 shares
    Share 0 Tweet 0
  • Java program to find quotient and remainder

    0 shares
    Share 0 Tweet 0
  • how to find quotient and remainder in c program

    0 shares
    Share 0 Tweet 0
Programming Shortcut

Hi Friends, Programming Shortcut is Educational Blog, that From you Learn Programming in Multiple languages like C, C++, Java Programming Language.

LEARN MORE »

Recent Posts

  • How to find quotient and remainder in c++ program
  • how to find quotient and remainder in c program
  • Java program to find quotient and remainder

Categories

  • .Net
  • Programming Language
  • Programs in c
  • Programs in cpp
  • Programs in java
  • Uncategorized

All © 2021 Programming Shortcut - Present By Math Training.

No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us

All © 2021 Programming Shortcut - Present By Math Training.

This website uses cookies. By continuing to use this website you are giving consent to cookies being used. Visit our Privacy and Cookie Policy.
Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?