Art, asked by Anonymous, 1 month ago

What is Call by reference eplain?

Answers

Answered by CopyThat
8

Answer :-

Call-by-reference:-

  • In this technique actual arguments are passed by reference than passing by values. When function call is made, the reference of actual parameters is copied to formal parameters.
Answered by TheBrainlyUser96
1

Answer:

\huge\mathbb\colorbox{black}{\color{white} {AnSwEr}}

The call by reference method of passing arguments to a function copies the address of an argument into the formal parameter. Inside the function, the address is used to access the actual argument used in the call. It means the changes made to the parameter affect the passed argument.

Similar questions