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
Join The Discussion