write the general form of switch statement
Answers
Answered by
2
Answer:
The general form of a switch statement is:-
switch( expression) {
case value1 : <appropriate C++ statements>
break;
case value2 : <appropriate C++ statements>
break;
:
default : <appropriate C++ statements>
break;
}
hope this helps if so then don't forget to thank and mark as BRAINLIEST....
Similar questions
Computer Science,
5 months ago
Math,
5 months ago
English,
5 months ago
Social Sciences,
11 months ago
Biology,
1 year ago