>>You should be able to store the data for each card within an integer. You could >>then get the suit as card / 10 and you could get the rank as card % 10. I find this approach >>simplifies things a little. Not getting this fully. The suit and the rank is where you lost me
int card = 39;char suit = (card / 10)+'A';int rank = (card % 10)+1;printf("suit: %c, rank: %d", suit, rank);
]I used fseek, fopen, fclose, etc but I seem to always do a pointer/memory violation as a popup window the red X pops up always when it gets to saving/opening. Some tips or pages with examples would be nice