Can someone look over my code and see if it looks okay. It won't compile for me and I can't figure out what is wrong. It's suppose to randomly assign numbers to an array to simulate a deck and then shuffle them and then deal (output) 13 hands of 4 cards to make sure the random number generator works.
cards.cpp: In function ‘void display(int*, int)’:
cards.cpp:76:15: error: expected initializer before ‘<’ token
cards.cpp:100:1: error: expected primary-expression at end of input
cards.cpp:100:1: error: expected ‘;’ at end of input
cards.cpp:100:1: error: expected primary-expression at end of input
cards.cpp:100:1: error: expected ‘)’ at end of input
cards.cpp:100:1: error: expected statement at end of input
cards.cpp:100:1: error: expected ‘}’ at end of input
Nevermind I think I figured it out. I missed a part when i was reading the problem. I was suppose to use the class RandomVariable that we used in another problem.