Home / C Programming / Control Instructions :: Discussion

Discussion :: Control Instructions

  1. We want to test whether a value lies in the range 2 to 4 or 5 to 7. Can we do this using a switch?

  2. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    We can do this in following switch statement

     switch(a) {     case 2:     case 3:     case 4:        /* some statements */        break;     case 5:     case 6:     case 7:        /* some statements */        break; } 


Be The First To Comment