home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / gkit.zip / D0QUEST < prev    next >
Text File  |  1988-02-20  |  1KB  |  49 lines

  1. What is the largest signed integer
  2. 32767
  3. What function will you use for opening a file
  4. og_open
  5. What function will you use for creating a file
  6. og_create
  7. Is it ok to use exit() in your game
  8. no
  9. What function will you use to read raw file data
  10. uread
  11. What function will you use to write raw file data
  12. uwrite
  13. What function will you use to allocate memory
  14. og_malloc
  15. Where to specify the name of your game function
  16. gateways.h
  17. Is it ok to add your defines to Gateways.h
  18. no
  19. Is it ok to use printf() in your game
  20. no
  21. Is it ok to use sprintf() in your game
  22. yes
  23. Is it ok to use lseek() in your game
  24. yes
  25. Where is the main() function in Gateways
  26. g0kit.c
  27. Does the length of a string include the null byte
  28. no
  29. Is the length of a string the same as sizeof
  30. no
  31. What must you do with pointers before using them
  32. initialize them
  33. What is another name for a string
  34. char array
  35. What is the name of a global temp string to use
  36. gss
  37. How can you tell the max size of gss
  38. sizeof(gss)
  39. Does sizeof(string) include space for null byte
  40. yes
  41. What is the name of the first file handle to use
  42. gfd0
  43. What is the name of the first pointer to og_malloc() memory
  44. gp0
  45. How can you tell the size of a memory area *gp0
  46. #define macro
  47. What is the symbol to use to compare 2 simple variables for equality
  48. ==
  49.