MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is an incorrect syntax to pass by reference a member of a structure in a function?(Assume: struct example{int num;} e;) |
| A. | func(&(e).num); |
| B. | func(&(e.num)); |
| C. | func(&e.num); |
| D. | All of above |
| E. | None of these |
| Answer» F. | |