Switch (i)
i=1;
case 1
i++;
case 2
++i;
break;
case 3
--i;
Output of i after executing the program
Answer Posted / jack
the value of i that was initialized before the switch
statement remains unchanged as the switch statement does
not have flower braces.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Is this program statement valid? INT = 10.50;
What functions are used in dynamic memory allocation in c?
Why does the call char scanf work?
State the difference between x3 and x[3].
Do character constants represent numerical values?
Write a program for finding factorial of a number.
How does #define work?
What does struct node * mean?
What is the significance of an algorithm to C programming?
How can I generate floating-point random numbers?
Is c is a procedural language?
Explain what are bus errors, memory faults, and core dumps?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
How can you tell whether a program was compiled using c versus c++?
What is pointer to pointer in c?