Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

/*17. Write a program to demonstrate the use of switch statement without a break.

*/

#include <stdio.h>
main()
{
int option = 1;
switch(option)
{
case 1: printf("\n In case 1");
case 2: printf("\n In case 2");
default: printf("\n In case default");
}
return 0;
}

You might also like