diff --git a/src/main/quizproject.c b/src/main/quizproject.c index eb2ab4d..6104a6c 100644 --- a/src/main/quizproject.c +++ b/src/main/quizproject.c @@ -2958,6 +2958,22 @@ void v_allaboutspace(void){ } else { printf("\nIncorrect\n"); } + + printf("\nQuestion 3: What is the name of the first man-made satellite to be launched into space?\n\n"); + printf("1. Sputnik 1\n"); + printf("2. Apollo 11\n"); + printf("3. Vostok 1\n"); + printf("4. Explorer 1\n"); + printf("\nEnter your answer: "); + scanf("%d", &space_answer); + if (space_answer == 1) { + printf("Correct!\n"); + space_score++; + } else { + printf("Incorrect\n"); + } + + printf("\nYour score is: %d\n", space_score); }