Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
int main() {
int choice = 2;
switch (choice) {
case 1:
printf("Option One\n");
break;
case 2:
printf("Option Two\n");
break;
default:
printf("Invalid Option\n");
}
return 0;
}Coding works best on desktop or with an external keyboard.