create a structure for cards it keeps track of the face card
create a structure for cards it keeps track of the face card (int) the suit (enum) and color (diff enum) create appropriate enum
Solution
Answer:
enum SUIT
{
SPADES, HEARTS, DIAMONDS, CLUBS };
enum COLOR { RED, BLACK };
struct Card
{
int face; enum SUIT suit; enum COLOR color;
}
