adplus-dvertising
frame-decoration

Question

For the following function call which option is not possible?

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 members address can be displayed in structure

c.

Individual member can be passed by reference in a function

d.

None of the above

Answer: (a).Compiler can access entire structure from the function

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. For the following function call which option is not possible? func(&s.a;); //where s is a variable of type struct and a is the member of the struct.