How do I print out the contents of a vector?
If you have a C++11 compiler, I would suggest using a range-based for-loop (see below); or else use an iterator. But you have several options, all of which I will explain in what follows. Range-based for-loop (C++11) In C++11 (and later) you can use the new range-based for-loop, which looks like this: std::vector<char> path; // … Read more