diff --git a/build/test/out/c/casualQuiz.o b/build/test/out/c/casualQuiz.o index 49e749f..78f805f 100644 Binary files a/build/test/out/c/casualQuiz.o and b/build/test/out/c/casualQuiz.o differ diff --git a/build/test/out/test_casualQuiz.out b/build/test/out/test_casualQuiz.out index a991412..1a1f3ec 100755 Binary files a/build/test/out/test_casualQuiz.out and b/build/test/out/test_casualQuiz.out differ diff --git a/build/test/results/test_casualQuiz.pass b/build/test/results/test_casualQuiz.pass index 29700f7..90589e8 100644 --- a/build/test/results/test_casualQuiz.pass +++ b/build/test/results/test_casualQuiz.pass @@ -61,4 +61,4 @@ - Right Answer, well done. - Wrong Input! - Wrong Input! -:time: 0.03535600000759587 +:time: 0.03401070000836626 diff --git a/build/test/results/test_quizduell.pass b/build/test/results/test_quizduell.pass index e8f66ee..1e25796 100644 --- a/build/test/results/test_quizduell.pass +++ b/build/test/results/test_quizduell.pass @@ -11,4 +11,4 @@ :failed: 0 :ignored: 0 :stdout: [] -:time: 0.016479099984280765 +:time: 0.015290900017134845 diff --git a/build/test/results/test_timequiz.pass b/build/test/results/test_timequiz.pass index f5b657d..7070fd5 100644 --- a/build/test/results/test_timequiz.pass +++ b/build/test/results/test_timequiz.pass @@ -11,4 +11,4 @@ :failed: 0 :ignored: 0 :stdout: [] -:time: 0.015310700051486492 +:time: 0.016262600023765117 diff --git a/build/test/results/test_wwm.pass b/build/test/results/test_wwm.pass index 5aa7e10..8523d6b 100644 --- a/build/test/results/test_wwm.pass +++ b/build/test/results/test_wwm.pass @@ -11,4 +11,4 @@ :failed: 0 :ignored: 0 :stdout: [] -:time: 0.015567699971143156 +:time: 0.015809100004844368 diff --git a/src/casualQuiz.c b/src/casualQuiz.c index 536c033..e39a10f 100644 --- a/src/casualQuiz.c +++ b/src/casualQuiz.c @@ -11,12 +11,19 @@ void casualQuiz() { char* easy_fragen[] = { //eingabe der Fragen in ein Array "Which Disney character famously leaves a glass shoe behind at a royal ball?", "The hammer and sickle are one of the most recognisable symbols of which political ideology?", + "Which two words traditionally appear onscreen at the termination of a feature film?", + "A person with well-developed abdominal muscles is said to have a what?", + "A magnet would most likely attract which of the following?", }; char* easy_antworten[][4] = { //Eingabe der zugehörigen Antworten in ein array {"Elsa", "Rapunzel", "Cinderella", "Pocahontas"}, {"Republicanism", "Liberalism", "Conservatism", "Communism"}, + {"The End", "The Termination", "Pizza's ready", "Hotdog Time"}, + {"12-Pack", "6-Pack", "Family Pack", "One-Pack"}, + {"Metal", "Plastic", "Humans", "Water"}, + }; - int easy_richtigeAntworten[] = { 3,4 }; // int, um die jeweils richtige antwort zu zeigen + int easy_richtigeAntworten[] = { 3,4,1,2,1 }; // int, um die jeweils richtige antwort zu zeigen int length_frag_array = sizeof(easy_richtigeAntworten) / sizeof(int); int correct = 0;