Which option is not possible for the following function call?
func(&s.a); //where s is a variable of type struct and a is the member of the struct.
func(&s.a); //where s is a variable of type struct and a is the member of the struct.A. Compiler can access entire structure from the function
B. Individual member's address can be displayed in structure
C. Individual member can be passed by reference in a function
D. None of the mentioned
Answer: Option A
Related Questions on Structure and Union
Which of the following can be a member of a structure?
A. Function
B. Another structure
C. Enumeration
D. All of the above

Join The Discussion