#include #include #define CARDS 53 #define SUITLEN 10 struct card { char suit[SUITLEN]; int number; }; void initialize(struct card c[]) { char suits[][SUITLEN] = {"ハート", "スペード", "ダイヤ", "クラブ"}; int s, n, i; for (i=0; i