how to deal cards to multiple players card game C
-2
I am trying to make a card game in c, I am a bit stuck on how to deal the cards to a selected amount of players. Could anyone give me some guidelines on how to do this? I will post the code below, Thanks in advance and happy new year!!! #include<stdio.h> #include <stdlib.h> //random number generator functions #include <string.h> #include <time.h> #include <ctype.h> #define CARDS 52 int playerAmount; int deckAmount; int drawPosition = 0; int deckPosition = 0; char gamePlay; int handNumber = 0; int players; const char *numeric = { "Two","Three","Four","Five","Six","Seven", "Eight","Nine","Ten","Queen", "Jack","King",...