Top

Discussion

Which of the following is an incorrect syntax to pass by reference a member of a structure in a function?

(Assume: struct temp{int a;}s;)

 

  • A.func(&s.a);
  • B.func(&(s).a);
  • C.func(&(s.a));
  • D.None of the above

Answer: D

No answer description available for this question

No comment is present. Be the first to comment.
Loading…

Post your comment