+ 2
Can we say "to" word in c++ launguage?
or what is the word that take it place ... for example I want to say 'case 0 to 50 ' how I can do it?
5 Answers
+ 2
you can use if statments instead of switch
if(x>=0 && x<=50){...}
+ 2
Or while
0
thanks soo much dear Mima
0
can't we use switch for the same