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
What is a scope resolution operator in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Why do we use main function?
What are the main characteristics of c language describe the structure of ac program?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Are local variables initialized to zero by default in c?
What is the role of this pointer?
Can you explain the four storage classes in C?
Explain what are the advantages and disadvantages of a heap?
What is sizeof return in c?
What do you mean by invalid pointer arithmetic?
What is stack in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers