1.

What substitution should be made to //-Ref such that ptr1 points to variable c in the following C code?

A. *sptr = &c;
B. **sptr = &c;
C. *ptr1 = &c;
D. none of the mentionedView Answer
Answer» B. **sptr = &c;


Discussion

No Comment Found