Posts Tagged ‘switch break default’
C/C++ Programming
How to Use Switch Statements in C++
Switch statements are used as a way of carrying out deep conditional statements. Such statement ensure that a given variable is tested for equality in relation to given values. Each of these values is referred to as a case and ...