Switch (i)
i=1;
case 1
i++;
case 2
++i;
break;
case 3
--i;
Output of i after executing the program
Answer Posted / ramesh
i as it is
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is size of union in c?
Is multithreading possible in c?
Write a program to use switch statement.
Why do we use namespace feature?
Explain what are linked list?
What is the difference between a function and a method in c?
Why do we use stdio h and conio h?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
What is the process to generate random numbers in c programming language?
Is it possible to execute code even after the program exits the main() function?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
what is the role you expect in software industry?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }