Advertisements
Advertisements
Question
Write the Syntax of Switch statement.
Answer in Brief
Solution
switch (n) {
case label1:
code to be executed if n=label1;
break;
case label2:
code to be executed if n=label2;
break;
case label3:
code to be executed if n=label3;
break;
...
default:
code to be executed if n is different from all labels;
}
shaalaa.com
If elseif else Statement in PHP
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Define if...elseif....else Statement in PHP.
Write the usage of Switch Statement in PHP.
Write is the purpose of if elseif else statement.
Write Short notes on Switch statement.
Discuss in detail about Switch statement with an example.
Explain the if elseif else statement. With suitable example.