Functions and All That

12345678910111213141516171819
Across
  1. 3. Functions that do not return a value
  2. 5. Variables that can be used anywhere in the code
  3. 6. Where you can use variables
  4. 7. Returns the memory address of its operand
  5. 8. A function already included in C++
  6. 9. Returns square root
  7. 13. Terminates current function and returns specified value to the caller function.
  8. 15. When an argument's value is copied into a function's parameter
  9. 16. Functions that return a value
  10. 17. Variables that can only be used in the function they are declared in
  11. 18. How long a function runs in a program
  12. 19. Parameter declared as a part of a function definition
Down
  1. 1. Returns a pseudo-random integral number
  2. 2. Argument passed in a function call
  3. 4. Library to generate random numbers
  4. 6. Seeds a pseudo-random number generator
  5. 10. A group of statements that together form a task
  6. 11. can be declared without actually defining the function completely
  7. 12. Declaring function parameters as references instead of normal variables
  8. 14. Contains time information