Answers for "switch case c++ syntax"

C#
0

switch case c++

// Transfers control to one of the several statements, depending on the 
//value of a condition.
switch (variable or an integer expression) {
     case constant: {
     	//C++ code
    	 break;
     }
     case constant: {
     	//C++ code
     	break;
     }
     default: {
     	//C++ code
     	break;
   	 }
}
Posted by: Guest on April-30-2021

C# Answers by Framework

Browse Popular Code Answers by Language