Evaluate like data with multiple case structures on a single line - C Statement

C examples for Statement:switch

Description

Evaluate like data with multiple case structures on a single line

Demo Code

#include <stdio.h> 
int main() /* w ww .ja v a2  s.c  o m*/
{ 
   int iResponse = 0; 

   printf("1\tSports\n"); 
   printf("2\tGeography\n"); 
   printf("3\tMusic\n"); 
   printf("4\tWorld Events\n"); 
   printf("\nPlease select a category (1-4): "); 
   scanf("%d", &iResponse); 

   switch (iResponse) { 
      case 1: case 2: 
         printf("\nYou selected sports questions\n"); 
         break;
      case 3: case 4: 
         printf("You selected music questions\n"); 
         break;
      default: 
         printf("Invalid category\n"); 
   }
}

Result


Related Tutorials