1.

Write the syntax of‘switch-case’ statement.

Answer»

Syntax :

switch(expression)

{

case constant 1 :

statements

break

case constant 2 :

statements

break

.

.

default

statements

}



Discussion

No Comment Found