Hi, I'm having a problem about the deck of card. I'm a really beginner of this so plz be nice to me...
So I have set up the program and now I have to deal with setting the cards in to the Deck array to be one of each kind of playing card.
Here's the code that I have got so far.
struct Card{
string face;
string suit;
};
Card deck[52];
int numFaces = 13;
int numSuits = 4;