for (i = 1; i < DA_LEN(&a.gmap); i++)
printf("%2u guesses: %5u games\n", i, DA(&a.gmap)[i]);
printf("Average: %.4f (%.2fs)\n",
- (double)a.g/a.n, (double)a.t/(a.n * CLOCKS_PER_SEC));
+ (double)a.g/a.n, a.t/(a.n * (double)CLOCKS_PER_SEC));
}
/*----- Main game logic ---------------------------------------------------*/