-
Which option is not possible for the following function call?
func(&stru.num); //where stru is a variable of type struct and num is the member of the struct.
-
- Individual member can be passed by reference in a function
- Individual member’s address can be displayed in structure
- Compiler can access entire structure from the function
- All of above
- None of these
Correct Option: C
Compiler can access entire structure from the function