Answer and Explanation
In C programming, switch statements allows a variable to be tested for equality against a list of values. The switch statements works by evaluating the expression and then executing all statements that follow the matching case label.
switch()status
{
case 200:
cout<<"OK(fulfilled)",
break;
case 403:
cout<<"forbidden";
break;
case 404:
cout<<not found";
break;
case 500:
cout<<"server error";
break;
}