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.

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.
Correct Answer Compiler can access entire structure from the function

Related Questions

Which of the following syntax for declaring a variable of struct STRUCT can be used in both C and C++?
Which of the following will stop the loop at the last node of a linked list in the following C code snippet?
struct node{ struct node *next;};