What Is Switch Case C++?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Switch case is a control flow statement used in C++ programming to execute different code depending on the value of an expression. It is a type of a conditional statement, and it works by comparing the value of a variable against the values specified in a list of case statements. If there is a match, the code associated with that case will be executed.