C++ functions

1234567891011121314151617181920
Across
  1. 8. produces a sequence of random numbers that fit certain requirements for randomness
  2. 9. tells a function what to give back after performing its task
  3. 10. how long a variable remains in system memory
  4. 13. memory locations in a functions parameter list
  5. 16. variables that can only be used in the function they are initilized in
  6. 17. information a function needs to perform its task
  7. 18. passing a copy of a variables value
  8. 19. Goes before the main function, defines a functions name, return type, and its parameters
  9. 20. the symbol used to pass a variable by reference
Down
  1. 1. what the symbol telling a variable to be passed by reference is called
  2. 2. function that returns no value
  3. 3. functions that are included with the c++ language
  4. 4. passing a variables address
  5. 5. functions that are contained withing the same file as the program
  6. 6. a function that gives back a value when called
  7. 7. function in the c++ libraries that calculates the square root value of the parameter number
  8. 11. function that returns the current system time
  9. 12. variables that can be called anywhere in the program
  10. 14. function that generates a random number when called
  11. 15. indicates where in the program a variable can be used