Answers for "c++ default switch"

237

c++ switch

switch(expression) {
  case x:
    // code block
    break;
  case y:
    // code block
    break;
  default:
    // code block
}
Posted by: Guest on February-21-2020
-1

initialize variable in switch case c++

switch (val)
{   
case VAL:  
{
  // This will work
  int newVal = 42;  
  break;
}
case ANOTHER_VAL:  
...
break;
}
Posted by: Guest on February-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language