Question: Given struct card { char *face; char *suit; } c, *cPtr; cPtr= &c; Which of following is the proper syntax to access the member face?
Given struct card { char *face; char *suit; } c, *cPtr;
cPtr= &c;
Which of following is the proper syntax to access the member face?
*cPtr->face cPtr.face cPtr->face card->face
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
