Here is a set of declarations that define how the data for a set of poker hands is organized. Create a neat diagram that illustrates this organization. The diagram in Section 7.12 of Chapter 7 on nested structures might give you an idea of how to begin.
struct CardStruct
{ int face;
char suit; // ‘s’, ‘h’, ‘d’, or ‘c’
};
struct PlayerStruct
{ int playerNum;
CardStruct card[5];
}
PlayerStruct player[4];
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.