Saved Bookmarks
| 1. |
What are different function calling mechanisms in c?? |
|
Answer» 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. ... To pass a value by reference, argument pointers are passed to the FUNCTIONS just like any other value. |
|