Chapter 6: Problem 31
Can a function have a local variable with the same name as a global variable?
Chapter 6: Problem 31
Can a function have a local variable with the same name as a global variable?
All the tools & learning materials you need for study success - in one app.
Get started for freeThe following statement calls a function named half, which returns a value that is half that of the argument passed to it. Assume that result and number have both been defined to be double variables. Write the half function. result \(=\) half (number)
Special variables that hold copies of function arguments are called __________.
Reference variables allow arguments to be passed by ____________.
A program contains the following function. int cube(int num) 1return num " num " num:1 Write a statement that passes the value 4 to this function and assigns its return value to the variable result.
If a function has a local variable with the same name as a global variable, only the _____________ variable can be seen by the function.
What do you think about this solution?
We value your feedback to improve our textbook solutions.