Empty Arrays?

Hello! So I've written some code for a Go Fish program, and like the actual game of go fish, I want to add a card to the hand if they have to go fish, and take one away if they get a match. I'm storing all of the values of the hand in an array, so I was thinking that to make this work i'd need to add and subtract elements to an array, and eventually check to see if there are no elements left in said array.
I was just wondering if this kind of array manipulation is possible, and if so how.

Thanks!
Look up how to use std::vector ;)
Yeah the std::vector <> class is a good one for this as it can be resized dynamically.

Aceix.
Thanks a bunch!
Topic archived. No new replies allowed.