Saved Bookmarks
| 1. |
Why for pacing a structure to a function call by reference is advisable to us? |
|
Answer» In this method of passing the structures to functions, the address of a structure variable /object is passed to the function using address of(&) operator. So any change made to the contents of structure variable inside the function are reflected back to the calling function. |
|