Computer Science, asked by wardayousaf642, 4 days ago

list of argument that are passed to the function declarator??​

Answers

Answered by tanishgupta886
0

Explanation:

The terms parameter and argument can be used for the same thing: information that are passed into a function. From a function's perspective: A parameter is the variable listed inside the parentheses in the function definition. An argument is the value that are sent to the function when it is called.

Arguments are passed by value; that is, when a function is called, the parameter receives a copy of the argument's value, not its address. ... However, because arguments can be addresses or pointers, a function can use addresses to modify the values of variables defined in the calling function.

Similar questions