Switch (i)
i=1;
case 1
i++;
case 2
++i;
break;
case 3
--i;
Output of i after executing the program
Answer Posted / rukmanee
output: i=1
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is cohesion and coupling in c?
can any one tel me wt is the question pattern for NIC exam
What is the explanation for the dangling pointer in c?
What is typeof in c?
Is c compiled or interpreted?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is a keyword?
what will be maximum number of comparisons when number of elements are given?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Are global variables static in c?
What is spaghetti programming?
Write a program to print fibonacci series without using recursion?
Can we change the value of static variable in c?
List the difference between a While & Do While loops?
what is a constant pointer in C