Business Studies, asked by pandeytushar2010, 9 months ago

write the general form of switch statement​

Answers

Answered by navaneeththegenius
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