I'm in geometry and have been studying vectors. But how do they work in C++ and what would I use them for?
Thanks,
Vorbis
C++'s std::vector is nothing at all like vectors in mathematics. std::vector is a linear storage container -- like a resizable array.
Yeah...basically the only relation between std::vector and math vectors is that they both can (theoretically) extend forever.
c++ vectors sound interesting. I'm going to look up more on them.