Question: Having problems getting this program to run can someone tell me how to correct it. Thanks #include #include #include #include using namespace std; void unwrapDeck(vector
Having problems getting this program to run can someone tell me how to correct it. Thanks #include #include #include #include using namespace std; void unwrapDeck(vector &deck); void shuffleDeck(vector &deck) { for(int i=1; i<=52; i++) deck.push_back(i); //Status of cards before shuffling cout << "Before shuffling: " << endl; for(int i=0; i<52; i++) cout < &deck) } random_shuffle(deck.begin(), deck.end()); { int main() { vectorVct; unwrapDeck(Vct); shuffleDeck(Vct); cout << " --------- "; //after cout << "Status of cards after shuffling: " << endl; for(int i=0; i<52; i++) cout<
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
