If I put the print statement after the switch and before the first case, why is it not printing? Example:
switch {
cout << “Switch Case” << endl;
case ’ ':
}
If I put the print statement after the switch and before the first case, why is it not printing? Example:
switch {
cout << “Switch Case” << endl;
case ’ ':
}