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.

83 lines
2.1 KiB

#ifndef QUIZPROJECT_H
#define QUIZPROJECT_H
void play_quizgame(void);
void play_factorlie(void);
void play_milliongame(void);
void play_guessingGame(void);
void play_guessTheWord(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);
void displayCredits(void);
void v_factorlie(void);
void v_guessingGame(void);
void v_guessTheWord(char word[], char guessed[]);
void million_instructions();
void million_exit(int million_a);
//----smart_brain_header_begin-----
void e_press_key_start(void);
void e_display_instruction(void);
void e_t_f_printQuestions(char [][100],char [], int []);
void e_ask_questions(void);
void e_smart_brain(void);
bool e_true_false(char);
void e_usr_answr(char [][100], char [], int, int,int []);
void e_questions_r3(void);
void e_printout_r3 (char [][100], char [][100]);
int track_r2_score = 0;
void guess_word_questions(void);
void print_guess_word_question (char [][100], char [][100],char [][100], int []);
void e_printout(char [][100], char [][100], int []);
void e_anagram_questions(void);
//----smart_brain_header_end-------
//Epic Game Headers
void B_displayWelcomeMessage(void);
void B_username(void);
void b_entertostart(void);
void B_sayhello(char name[]);
void B_userinfo(void);
void B_displayGameInstructions(void);
void B_show_time(void);
int B_testround(void);
int B_round1(void);
int B_round2(void);
int B_round3(void);
int B_round4(void);
int B_round5(void);
int B_round6(void);
int B_round7(void);
int B_round8(void);
int B_round9(void);
int B_round10(void);
void B_saythankyou(void);
void rate(void);
void B_write_review(void);
#define NUM_QUESTIONS 5
#define round 15
#define MAX_LIVES 10
#define MAX_WORD_LENGTH 20
#endif