Vectors?

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.
sounds complicated :D
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.
There is a good reference part on this site: http://www.cplusplus.com/reference/stl/vector/
Topic archived. No new replies allowed.