Question: Convert the following switch construct into an IF - ELSE construct . do this in C ` ` ` switch ( choice ) { case

Convert the following switch construct into an IF-ELSEconstruct. do this in C
```
switch (choice){
case 1:
printf("Start Game");
break;
case 2:
printf("Load Game");
break;
case 3:
printf("Options");
break;
case 4:
printf("Exit");
break;
default:
printf("Invalid choice");
}
```
Convert the following switch construct into an IF

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!