You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
726 B
28 lines
726 B
#ifndef QUIZPROJECT_H
|
|
#define QUIZPROJECT_H
|
|
|
|
void play_quizgame(void);
|
|
void play_factorlie(void);
|
|
void play_game3(void);
|
|
void displayWelcomeMessage(void);
|
|
void displayGameInstructions(void);
|
|
void displayLifelineInstructions(void);
|
|
void displayInstructions(void);
|
|
void displayGoodLuckMessage(void);
|
|
void ask_questions(void);
|
|
void ask_hard_questions(void);
|
|
void fifty_fifty(int);
|
|
void hint(int);
|
|
void correct(int);
|
|
void wrong(int);
|
|
int score = 0;
|
|
void printOutOption(char [][100], char [][100],char [], int, int, int[] );
|
|
void looping(char [][100], char [][100], char [], int []);
|
|
void displayThankYouMessage(void);
|
|
int* randomNumber();
|
|
void hintForHardQuestions(int);
|
|
void feedbackForm(void);
|
|
|
|
#define NUM_QUESTIONS 5
|
|
|
|
#endif
|