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

2 years ago
2 years ago
2 years ago
2 years ago
  1. #ifndef QUIZPROJECT_H
  2. #define QUIZPROJECT_H
  3. void play_quizgame(void);
  4. void play_factorlie(void);
  5. void play_game3(void);
  6. void displayWelcomeMessage(void);
  7. void displayGameInstructions(void);
  8. void displayLifelineInstructions(void);
  9. void displayInstructions(void);
  10. void displayGoodLuckMessage(void);
  11. void ask_questions(void);
  12. void ask_hard_questions(void);
  13. void fifty_fifty(int);
  14. void hint(int);
  15. void correct(int);
  16. void wrong(int);
  17. int score = 0;
  18. void printOutOption(char [][100], char [][100],char [], int, int, int[] );
  19. void looping(char [][100], char [][100], char [], int []);
  20. void displayThankYouMessage(void);
  21. int* randomNumber();
  22. void hintForHardQuestions(int);
  23. void feedbackForm(void);
  24. #define NUM_QUESTIONS 5
  25. #endif