CPSC 421 OOP Separate Compilation
Across
- 4. An include file should not depend on previous includes or the _____ of includes
- 5. Files are compiled separately into _____ files
- 6. Include files, *.hpp, include function _____
- 7. Do not include ._____ files
- 10. An include file needs to be _____-_____
- 12. We require _____ _____ to prevent the compiler from seeing the include file contents more than once
- 14. Real programs are composed of _____ files
- 17. Implementation files, *.cpp, contain the _____ concerns
Down
- 1. Function declarations are also known as function _____
- 2. For each application, one file is the main program and contains the _____ function
- 3. The code that uses the include file must _____ no matter where it is included or which includes precede it
- 4. In an include file, _____ insert the include of any files needed for the function declarations
- 6. Hide as many _____ as possible in the implementation files
- 8. The object files are linked together using the _____
- 9. Implementation files, *.cpp, include function _____
- 11. Include files, *.hpp, contain the _____ concerns
- 13. Separating functions and classes into separate files also increases _____
- 15. Both files require a _____ comment, as in any other source file
- 16. Include the related include file _____, then when you compile the implementation file, you check that the include file is complete