// This line should be included with your #include statements #include // This is the function prototype int card(void); // This line should come after your variable declarations in your main() srand((unsigned)time(NULL)); // This function returns an integer from 0..51 inclusive. It's up to you to // figure out how to convert that number into a card. // (Hint: Use integer division and mod) int card() { return rand()%52; }