Case Control Statement (Switch case)
Syntax
Case
Control Statement
Switch :- it works on choice which user enters. it remove
the problem which created by the else if ladder and save the cup time
Syntax:
Switch(value)
{
Case
1:
-----
break;
case
2:
-----
break;
case 3:
-----
break;
default:
---------
}
Comments
Post a Comment