C++ Keyword Search

123456789101112131415161718192021
Across
  1. 1. Indicates a function returns no value
  2. 4. A label inside switch
  3. 6. Used to store whole numbers
  4. 8. Skips the current loop iteration
  5. 10. Defines a blueprint for objects
  6. 12. Access specifier: accessible anywhere
  7. 15. Repeats code as long as a condition is true
  8. 16. Stores decimal numbers with single precision
  9. 17. Stores decimal numbers with double precision
  10. 19. Declares a value that cannot change
  11. 21. Sends a value back from a function
Down
  1. 2. Frees dynamically allocated memory
  2. 3. Creates a custom data structure
  3. 5. Selects one block to execute based on a value
  4. 7. Used with while to create a loop that runs once first
  5. 8. Stores a single character
  6. 9. Executes code only when a condition is true
  7. 11. Keeps variable value between function calls
  8. 12. Access specifier: accessible only in class
  9. 13. Exits a loop or switch immediately
  10. 14. Executes code when the if-condition is false
  11. 17. Executes when no switch case matches
  12. 18. Stores true or false values
  13. 20. Loop with counter initialization, condition, update