I\'m fairly new to C++ and don\'t quite understand function parameters with pointers and references. I have an array of Cards that I want to shuffle using the Fisher-Yates
Card *deck[deckSize];
I think you want:
Card *deck = new Card[deckSize];