Computer Science, asked by pavnisharma57, 7 months ago

which of the following are input values for a function. a) operators b) parenthesis c) variables d) arguments​

Answers

Answered by x77
14

Explanation:

Parenthesis and arguments

Answered by MotiSani
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.
  1. 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.
  2. 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