Switch-Case in C with Exercises and Solutions

Switch case is used when we need to test the value of a variable and compare it with multiple cases if case match is found then block of code will be executed and if match is not found, then default statement will be executed.


In this exercise we will practice lot of Switch case questions or examples with their solutions. Below is the list of switch case examples with their solutions.


  Exercises and examples of Switch-case:


1. C program to print number between 1 to 10 in character format using switch-case.




  You Might Like:



Thanks for reading this article. If you have any questions, then feel free to drop a comments.... :)

C program to check password is correct or incorrect using switch-case

Ex: write a C program to check password is correct or incorrect using switch-case. How to write a C program to check given password is correct or incorrect using switch-case. C program to check password is correct or incorrect using switch-case.

Input from user:

Enter your password: 1010

Expected output:

Welcome



Quick links:




  Step by step logic of the given program:


1. Accept input (password) from user declare variable say ps.

2. Switch the value of ps using switch(ps).

3. There is 1 possible value of ps(1010).

4. Therefore write 1 case inside the switch.

5. If  case does not match then for default case print incorrect password. 





  C program to check password is correct or incorrect using switch-case :


#include<stdio.h>
int main()
{
int ps;

printf("Enter your password: ");
scanf("%d",&ps);

switch(ps)
{
case 1010:
printf("--WELCOME--");
break;

default:
printf("-INCORRECT PASSWORD-");
}
return 0;
}



Above program shows the following output:


C program to check password is correct or incorrect using switch-case

C program to print day of week using switch-case

Ex: write a C program to print day of week using switch-case. How to write a C program to print day of week using switch-case. C program to print day of week using switch-case.

Input from user:

Enter number of day: 4

Expected output:

Thursday



Quick links:


  Step by step logic of the given program:


1. Accept day number from user declare variable say no.

2. Switch the value of no using switch(no).

3. There are six possible values of no which are 1,2,3,4,5,6&7.

4. Therefore write 6 cases inside the switch.

5. If any case does not matches then for default case print enter number between 1-7.



  C program to print day of week using switch-case:


#include<stdio.h>
int main()
{

 int no;

  printf("Enter number of day:");
scanf("%d",&no);

  switch(no)
  {

  case 1:  printf("\nMonday");
  break;

  case 2:
printf("\nTuesday");
  break;

  case 3:
printf("\nWednesday");
  break;

  case 4:
printf("\nThursday");
  break;

  case 5:
printf("\nFriday");
  break;

  case 6:
printf("\nSaturday");
  break;

  case 7:
printf("\nSunday");
  break;
  
  default:
  printf("Enter number between 1-7");

 }
 return 0;

}


Above program shows the following output:


C program to print day of week using switch-case

C program to create calculator using switch-case

Ex: Write a C program to create calculator using switch-case. How to write a C program to create calculator using switch-case. C program to create calculator using switch-case.

Input from user:

Enter Number1[+,-,*,/] Number 2:
125/25

Expected output:

Answer is= 5.000000




    Quick links:


  Step by step logic to create calculator using switch-case:


1. Accept two numbers and operator from user variable say no1, no2 , op.

2. Switch the value of op using switch(op).

3. There are four possible values of op +, -, *, /.

4. For case '+' perform addition and  print this, similarly for case '-' perform subtraction and print this using printf.

5. Repeat this process for multiplication and division.

6. In the last for default case print Invalid Operator.



  Program to create calculator using switch-case:


#include<stdio.h>
int main()
{
    char op;
    float no1, no2;

 printf("\t  SIMPLE CALCULATOR\n");
 printf("-------------------------------------\n");
 printf("Enter  Number1 [+,-,*,/] Number2 \n");
scanf("%f%c%f", &no1,&op,&no2);

 switch(op)
    {
        case '+': 
    printf("Answer= %f",no1+no2);
        break;

        case '-': 
    printf("Answer= %f",no1-no2);
        break;

        case '*': 
    printf("Answer= %f",no1*no2);
        break;

        case '/': 
    printf("Answer= %f",no1/no2);
        break;

        default
     printf("Invalid operator");
    }
    
    return 0;
}



Above program shows the following output:


C program to create calculator using switch-case, Create calculator using switch case in C programming language

C program to accept id from user to confirm department using switch-case

Ex: write a C program to accept id from user and display department. How to write a C program to accept id from user and display department. C program to accept id from user and display department.

Input from user:

Enter your ID: 11

Expected output:

Software development



    Quick links:


  Step by step logic of the given program:


1. Accept input(id) from user declare variable say id.

2. Switch the value of id using switch(id) and match with cases.

3. Inside the body of switch we will give 6 possible values of no

4. Therefore write 6 cases inside the switch.

5. If any case does not matches then for default case print invalid ID.



  C program to accept id from user to confirm department using switch-case:


#include<stdio.h>
void main()
{
int id;

printf("Enter your ID: ");
scanf("%d",&id);

   switch(id)
   {
    case 11:
    case 12:
    case 13:
   printf("Software department");
    break;
   
    case 21:
    case 22:
    case 23:
  printf("Developer department");
    break;
   
    default:
    printf("Invalid ID");
   }

}


Above program shows the following output:


C program to accept id from user to confirm department using switch-case


C program to print number between 1 to 10 in character format using switch-case

 Ex: write a C program to print  number between 1 to 10 in character formate. How to write a C program to print number between 1 to 10 in character format. C program to print number between 1 to 10 in character format.

Input from user:

Enter the number between 1 to 10:  5

Expected output:

You entered FIVE



    Quick links:


  Step by step logic of the given program:


1. Accept input (number) from user variable say no.

2. Switch the value of no using switch(no) and match with cases.

3. Inside the body of switch we will give 10 possible values of no  i.e. 1 to 10

4. Therefore we will write 10 cases inside the switch.

5. If any case does not matches then for default case print invalid number.



  C program to print  number between 1 to 10 in character format using switch-case:



#include<stdio.h>
void main()
{
int no;

printf("Enter the number between 1 to 10: ");
scanf("%d",&no);

switch(no)
{
case 1:
printf("You entered ONE");
break;
 
 case 2:
printf("You entered TWO");
 break;
 
 case 3:
printf("You entered THREE");
 break;
 
 case 4:
printf("You entered FOUR");
 break;
 
 case 5:
printf("You entered FIVE");
 break;
 
case 6:
printf("You entered SIX");
 break;
 
 case 7:
printf("You entered SEVEN");
 break;
 
 case 8:
printf("You entered EIGHT");
 break;

case 9:
printf("You entered NINE");
 break;

case 10:
printf("You entered TEN");
 break;
 
default:
printf("Invalid number");

}
}



Above program shows the following output:


C program to print  number between 1 to 10 in character format using switch-case

Switch-case in C Definition and Syntax

Definition: The control structure that allows us to make decision from the number of choices is called as switch

Below is shown syntax of Switch case.

Syntax:



  What is break statement?


Switch statement tests the value of a variable and compares it with multiple cases. Ones the case match is found a block of statements associated with that particular case is executed.

To Explore switch-case statements examples and their solutions ðŸ‘‰Click Here.

C program using do-while loop to check inside or outside the loop

Ex: Write a C program to check program is inside or outside the loop. How to write a C program to check program is inside or outside the loop.  C program to check program is inside or outside the loop. 


This program shows the working of do-while loop.




   Step by step logic of the given program:

1. First declare integer variable i=0.

2. After that inside the do-while loop accept input from user.

3. Give condition while(i!=1) that means the loop will iterate until 1 is entered.




   C program using do-while loop to check inside or outside the loop:


#include<stdio.h>
int main()
{
int i=0;

do
{
printf("\nYou are inside the loop");
printf("\nPress 1 to exit from loop: ");
scanf("%d",&i);
}while(i!=1);

printf("\nYou are out of do-while loop");

return 0;

}



Above prgram shows the following output:



C program to print numbers till 5 using do-while loop

Ex: write a C program to print number if it is less than or equal to 5 using do while loop. How to write a C program to print number if it is less than or equal to 5 using do while loop. C program to print number if it is less than or equal to 5 using do while loop. 


Note:
do-while loop runs at least one even if the condition is false because the condition is evaluated, after the execution of the body of loop.


   Step by step logic of the given program:


1. First declare intiger variable i=1.

2. After that inside the do while print value of i.

3. Increment value of i. 
Give condition while(i<=5).





   Program to print numbers till 5 using do-while loop:


#include<stdio.h>
int main()
{
int i=1;

do
{
printf("%d\n",i);
i++;
}while(i<=5);

return 0;
}



Above prgram shows the following output:


C Program To Print Fibonacci Series

Ex: Write a C program to print Fibonacci series. How to write a C program to print Fibonacci series. C program for Fibonacci series.

Input from user:

Enter number for how many times generate series: 7

Expected output:

Fibonacci series is: 0 1 1 2 3 5 8 13 21





   Step by step logic of the given program:


1. First  declare intiger variable's  no(number), a=0, b=1, c, i .

2. After that accept input (number) from user.

3. print value of a and b directly. (and decrease number by 2 in the for loop)

4. After that use one for loop which looks like. 
for(i=0;i<no-2;i++)

5. Inside the for loop Fibonacci series calculate using..

c=a+b;
a=b;
b=c;

6. After that Print value of c inside the for loop.





   C program to print Fibonacci series :



#include<stdio.h>
int main()
{

 int no,a=0,b=1,c,i;

printf("Enter number for how many times generate series:");
 scanf("%d",&no);

 printf("FIBONACCI SERIES: ");

 printf("%d %d ",a,b);

 for(i=0;i<no-2;i++)
 {
c=a+b;
a=b;
b=c;

   printf("%d ",c);
 }

 return 0;
}




Above prgram shows the following output: