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