which of the following are input values for a function. a) operators b) parenthesis c) variables d) arguments
Answers
Answered by
14
Explanation:
Parenthesis and arguments
Answered by
3
The correct answer is OPTION D: Arguments
- The "data" that a function gets is represented by a parameter, which is a symbol. Arguments in C can be supplied as a value or as a reference.
- Based on the value - A copy of the data is made and stored when the parameter name is used as the parameter name. Changes to the argument do not affect the data in the calling function.
- Based on reference - It is used to refer to a specific object.
- The reference parameter "references" the calling function's original data.
- As a result, any modifications made to the parameter will affect the original variable.
Similar questions