|
|
@ -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; |
|
|
|