+ 1
Tell me about switch statement
l have problem in switch statement
1 Answer
+ 2
Switch statement is like several ifs:
if (1=1) {
cout <<"Yes"
}
can be written as a switch, here's a tutorial.
https://youtu.be/TNUCZpgPjrw
l have problem in switch statement