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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started