how can we use switch statement 2 times in a program????

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • usman125
    New Member
    • May 2012
    • 1

    how can we use switch statement 2 times in a program????

    can we use switch statement 2 times in a program?
  • alexis4
    New Member
    • Dec 2009
    • 113

    #2
    You can use it as many times as you like, even if it's nested (switch into a switch).

    Comment

    • whodgson
      Contributor
      • Jan 2007
      • 542

      #3
      Place the complete switch() statement inside the body of a loop

      Comment

      Working...