Browse Source

added get 's' to start the game

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

9
src/main/quizproject.c

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

Loading…
Cancel
Save