Assume the following structure declaration exists for questions 10.18 through 10.20:
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 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.