Computer Science, asked by ahnafabid, 5 months ago

What is the output of the program given

below?

#include<stdio.h>

int main()

{

int i=4;

switch(i)

{

case 1: print ("1 ");

case 2: print ("2 ");

break; 1

case 3: print ("3 ");

break;

case 4:

case 5: print ("5 ");

default: print ("9 ");

return e;

}​

Answers

Answered by atrs7391
0

Answer:

Nothing will be the output, only it will be executed.

Similar questions