There are plenty of ways to do something equivalent in C++. * First, there's the Standard Template Library, which has the Vector class. A vector class object dynamically sizes itself, as you add/delete items from it. See http://www.sgi.com/tech/stl/index.html and google for Standard Template Library for more information. The advantage of using STL is that it is available with pretty much any ...