Saved Bookmarks
| 1. |
How will you pass a structure to a function? |
|
Answer» A structure variable can be passed to a function in a similar way of passing any argument that is of built – in data type. If the structure itself is an argument, then it is called “call by value”. If the reference of the structure is passed as an argument then it is called, “call by reference”. |
|