Most people would say std::vector<int>. I tend to use int[] only if it's a very simple problem. In general, std::vector is the safer choice.

Kelly