Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~93 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for johann26

I'm trying to make a deck of cards to use in a blackjack game but I'm having problems. [CODE]#include <stdio.h> #include <math.h> #include <string.h> main(){ int i; typedef struct { int rank, suit; } cardtype; cardtype deck[52]; cardtype hand[5]; char *rank[13] = {"ace", "Duece", "3", "4", "5", "6", "7", "8", …

Member Avatar for abhimanipal
0
93