Find the output of the following program. 
#include <stdio.h>
int main () {
   int division = 3;
   switch(division) {
      case 1 :
         printf("1st Division\n" );
         break;
      case 2 :
  printf("2nd Division\n" );
         break;
      case 3 :
         printf("3rd Division\n" );
         break;
      default :
         printf("runner up\n" );
   }
   return 0;

Posted on by