Computer Science, asked by arbazkhan1234tyt, 5 months ago

what
wil
be

output of The following
code
x= 1
switch (x)
{
c case1:
Case 2 :
Case 3:
printf ("/n x is a
positive
number)
break;
defa
ult
printf ("/n value of x is);​

Answers

Answered by aryapatel2007ap
0

Explanation:

what is a question ????

Answered by sanjaypal146
2

Answer:

Output will be  x is a  positive  number

Explanation:

case 1 matchs, but no break ; statement used so it will continue the flow till case 3 and display the print statement of case 3 then execute break; statement.

Similar questions