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.

106 lines
2.6 KiB

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_milliongame(void);
  6. void play_guessingGame(void);
  7. void play_guessTheWord(void);
  8. void displayWelcomeMessage(void);
  9. void displayGameInstructions(void);
  10. void displayLifelineInstructions(void);
  11. void displayInstructions(void);
  12. void displayGoodLuckMessage(void);
  13. void ask_questions(void);
  14. void ask_hard_questions(void);
  15. void fifty_fifty(int);
  16. void hint(int);
  17. void correct(int);
  18. void wrong(int);
  19. int score = 0;
  20. void printOutOption(char [][100], char [][100],char [], int, int, int[] );
  21. void looping(char [][100], char [][100], char [], int []);
  22. void displayThankYouMessage(void);
  23. int* randomNumber();
  24. void hintForHardQuestions(int);
  25. void feedbackForm(void);
  26. void displayCredits(void);
  27. void v_factorlie(void);
  28. void v_guessingGame(void);
  29. void v_guessTheWord(char word[], char guessed[]);
  30. void progress_bar(int percentage);
  31. void v_progress_bar(int argc, char *argv[]);
  32. void v_play_rockpapersciss(void);
  33. void million_instructions();
  34. void million_exit(int million_a);
  35. //------Math_quiz_header_begin-----
  36. void math_choose_question(int);
  37. int math_answer(int);
  38. void math_display_choice();
  39. void math_enter_game();
  40. void e_math_ques(void);
  41. void e_math_print(char [][140], char [][140]);
  42. void math_help(void);
  43. void math_choose_game(void);
  44. //------Math_quiz_header_end-------
  45. //----smart_brain_header_begin-----
  46. void e_press_key_start(void);
  47. void e_display_instruction(void);
  48. void e_t_f_printQuestions(char [][100],char [], int []);
  49. void e_ask_questions(void);
  50. void e_smart_brain(void);
  51. bool e_true_false(char);
  52. void e_usr_answr(char [][100], char [], int, int,int []);
  53. void e_questions_r3(void);
  54. void e_printout_r3 (char [][100], char [][100]);
  55. int track_r2_score = 0;
  56. void guess_word_questions(void);
  57. void print_guess_word_question (char [][100], char [][100],char [][100], int []);
  58. void e_printout(char [][100], char [][100], int []);
  59. void e_anagram_questions(void);
  60. void hint_anagram(int);
  61. //----smart_brain_header_end-------
  62. //Epic Game Headers
  63. void B_displayWelcomeMessage(void);
  64. void B_username(void);
  65. void b_entertostart(void);
  66. void B_sayhello(char name[]);
  67. void B_userinfo(void);
  68. void B_displayGameInstructions(void);
  69. void B_show_time(void);
  70. int B_testround(void);
  71. int B_round1(void);
  72. int B_round2(void);
  73. int B_round3(void);
  74. int B_round4(void);
  75. int B_round5(void);
  76. int B_round6(void);
  77. int B_round7(void);
  78. int B_round8(void);
  79. int B_round9(void);
  80. int B_round10(void);
  81. void B_saythankyou(void);
  82. void rate(void);
  83. void B_write_review(void);
  84. #define NUM_QUESTIONS 5
  85. #define round 15
  86. #define MAX_LIVES 10
  87. #define MAX_WORD_LENGTH 20
  88. #define ROCK 1
  89. #define PAPER 2
  90. #define SCISSORS 3
  91. #endif