195k views
7 votes
I really need this answer please

Which of the following describes passing by reference?
passing a memory address
passing a defined value
passing a data type copy
passing a variable name

Please help me

User Mikolajbe
by
3.4k points

1 Answer

14 votes

Answer:

Passing by memory address

Step-by-step explanation:

When you pass a memory reference like &a the data stored at this location can be directly accessed by the function through a dereference like *a = 2;

User Sujay U N
by
3.9k points