tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 C Language > Basic > Switch case

Switch case 

This example shows switch case usage.

File Name  :  
source/C/basic/switch_case.c 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01#include<stdio.h>
02#include<conio.h>
03#include<string.h>
04 
05int main()
06{
07   int i;
08    
09   for( i = 0 ; i < 5; i++) {
10     
11        switch(i){
12            case 0 : printf("\nIn switch case %d",i); break;     
13            case 1 : printf("\nIn switch case %d",i); break;
14            case 2 : printf("\nIn switch case %d",i); break;
15            case 3 : printf("\nIn switch case %d",i); break;
16            default : printf("\nIn switch case default (%d)", i); break;
17        }
18   }
19    
20   printf("\n\n\n");
21   char *str = "bethecoder";
22     
23   for( i = 0 ; i < 10; i++) {
24     
25        switch(str[i]){
26            case 'b' :
27            case 'e' :
28            case 't' :
29            case 'h' :                 
30            case 'd' : printf("\nIn switch case %c", str[i]); break;
31            default : printf("\nIn switch case default (%c)", str[i]); break;
32        }
33   }
34     
35     
36     
37    getch();
38    return 0;
39}

It gives the following output,
In switch case 0
In switch case 1
In switch case 2
In switch case 3
In switch case default (4)


In switch case b
In switch case e
In switch case t
In switch case h
In switch case e
In switch case default (c)
In switch case default (o)
In switch case d
In switch case e
In switch case default (r)



 
  


  
bl  br