define switch statement?
Answers were Sorted based on User's Feedback
Answer / abirami
it is used to check the various type of cases in one program.
| Is This Answer Correct ? | 20 Yes | 1 No |
Answer / krishna
Switch statement is a selection statement which is used in a situation where there exists various cases and one needs to jump over to the required statement without executing the precedence statements
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / d.jeswanth
switch statement can be defined as " it can choose a
related option from the multiple options ".it belongs to
control and conditonal statements.
*************thank you************
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / vijay
Its used to select the part of program to the execution
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / 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 ? | 1 Yes | 0 No |
Answer / 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 |
What is the difference between void main() and int main()?
Describe the difference between = and == symbols in c programming?
what defference between c and c++ ?
What are loops in c?
Under what circumstances does a name clash occur?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
write a c program that prints all multiples of 3between 1 and 50.
What are the 5 types of organizational structures?
What is a shell structure examples?
what is Structural oriented language? give some example of this language.....?
explain what are pointers?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?