Question asked by Visitor rasool
If i use "switch" statement how many "case" statments can i use
ex :-
int n;
cout<<"enter the choice";
cin>>n;
switch (n)
case 1:cout<<"one";
break;
case 2:cout<<"two";
break;
-----
-----
-----
like this how many case statement I can use in C & C++