Browse Source

added get 's' to start the game

main
fdlt3917 2 years ago
parent
commit
f3d83f281f
  1. 11
      src/main/quizproject.c

11
src/main/quizproject.c

@ -69,7 +69,16 @@ void displayInstructions(void) {
int main(){ int main(){
displayInstructions(); displayInstructions();
return 0;
printf(">>Press 's' and Enter start the Game<<\n");
char var, var1 = 's';
getchar();
while(var != var1) {
var = getchar();
}
printf("\n");
return 0;
} }
Loading…
Cancel
Save