#ifndef TIMEQUIZ_H #define TIMEQUIZ_H void timequiz(); int getRandomQuestionIndex(int askedQuestions[], int totalQuestions); void displayQuestion(const char* question,const char* answers[], int correctIndex); void processUserAnswer(int userAnswer, int correctIndex, int* score, int* totalCorrectAnswers,const char* answers[]); int isValidAnswer(int userAnswer); #endif //ende TIMEQUIZ_H