main(){
char cChoice, cMarker1;
printf("****************************************\n\n");
printf(" FLIP!-TAC-TOE 3D \n\n");
printf(" Enter S to start the game or \n\n");
printf(" E to exit! \n\n");
printf(" Choice: \n\n ", cChoice);
printf("****************************************\n\n");
scanf("%c", &cChoice);
system("CLS");
this is the task:Display a simple introduction screen at the beginning of the game. After making a choice (or whenever you want to), you may clear the screen using the system(“CLS”); function.
Can someone help how to generate a code when he/she inputt the letter S the game will start and when he/she inputted E the game will exit? Please?