Created
March 5, 2014 04:17
-
-
Save cceckman/9361053 to your computer and use it in GitHub Desktop.
Resizing a vector.
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
| #include <cstdio> | |
| #include <vector> | |
| int main(){ | |
| int new_size = 3; | |
| std::vector<int> blah; | |
| blah.resize(new_size); | |
| printf("%d\n", blah.size()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment