Answer Posted / amit
A switch statement is a selection statement that lets you
transfer control to different statements within the switch
body depending on the value of the switch expression. The
switch expression must evaluate to an integral or enumeration
value.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of structure padding in c?
Write a program to check prime number in c programming?
What is strcmp in c?
Why c is a procedural language?
What is c programing language?
What should malloc() do?
What is property type c?
What is scope rule of function in c?
How arrays can be passed to a user defined function
Is it possible to pass an entire structure to functions?
c language interview questions & answer
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What do you understand by normalization of pointers?
program for reversing a selected line word by word when multiple lines are given without using strrev
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply