C++ Specifics

1234567891011121314151617181920
Across
  1. 2. command used for selection with case statements
  2. 5. used as a landing point in the switch statement
  3. 7. subprogram or module
  4. 11. used to send a value from a function
  5. 12. type used for precision numbers
  6. 15. used to add a library
  7. 17. the primary function in the program
  8. 18. function that does not return a value
  9. 19. used to exit from a loop prematurely
  10. 20. type of loop with a specific number of iterations
Down
  1. 1. type of loop that does a pretest
  2. 3. program used to convert source code into machine code
  3. 4. command to send output to screen
  4. 5. command used to take input
  5. 6. a spelling or positional error in the code
  6. 8. used to let the program code move to next line
  7. 9. type of loop that does a posttest
  8. 10. type used for text data
  9. 13. an error in how the code is supposed to operate
  10. 14. C++ library file
  11. 16. type for a single piece of text data
  12. 17. command to return the remainder of two numbers
  13. 19. type for true or false