struct Rectangle{ int length; int width;};
Assume rptr is a pointer to a Rectangle structure. Which of the expressions, A, B, or C, is equivalent to the following expression:
rptr->width
A) *rptr.width
B) (*rptr).width
C) rptr.(*width)
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.