Advertisement
Guest User

functions.h

a guest
Dec 22nd, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.44 KB | None | 0 0
  1. #ifndef FUNCTIONS_H
  2. #define FUNCTIONS_H
  3.  
  4. struct answerquestions
  5.  
  6. {
  7.     char nameQuestion[200];
  8.     int difficulty;
  9.     int rightanswer;
  10.    
  11. };
  12.  
  13. int menu();
  14.  
  15. struct answerquestions* questionCreator(int* questionStorage);
  16. printQuestions(struct answerquestions* totalQuestions, int numberOfQuestions);
  17. compete(struct answerquestions* totalQuestions, int numberOfQuestions, int selectNumberOfQuestions, int selectDifficulty);
  18.  
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement