Functions

123456789101112131415161718
Across
  1. 4. The type of parameter that allows only the copy of value to be passed to the parameter.
  2. 7. A keyword used to return a value from a function.
  3. 8. This needs to be included when making use of rand() and srand()
  4. 11. Normally used to declare a function before it can be used.
  5. 12. A function that changes the value of its arguments.
  6. 14. Allows values generated by the rand() function to me more random.
  7. 16. Normally refers to the type and order of parameters in a function.
  8. 18. Generates pseudo-random numbers.
Down
  1. 1. This needs to be included when making use of time().
  2. 2. The place for storing arguments during a function call.
  3. 3. A value passed to a function when it's called.
  4. 5. The process of calling a function from within itself.
  5. 6. Is used as the seed when calling the srand() function.
  6. 9. Is required when making use of srand().
  7. 10. A function that doesn't return a value.
  8. 13. The mechanism by which C++ can determine which function to call based on the arguments provided.
  9. 15. A named block of code that performs a specific task.
  10. 17. The operator used to declare reference parameters.