Created
August 9, 2019 09:27
-
-
Save wiccy46/42ae4a5573d0b6a5416172855d2a0108 to your computer and use it in GitHub Desktop.
[printVector]Print C++ vector #c++
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (std::vector<int>::const_iterator i = vecName.begin(); i != vecName.end(); ++i) | |
| std::cout << *i << std::endl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment