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