Skip to content

Commit

Permalink
Merge pull request #682 from smzztx/patch-3
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
pezy chen committed Aug 25, 2018
2 parents 697cbae + 3c3354b commit c931439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch09/README.md
Expand Up @@ -114,7 +114,7 @@ auto it2 = v2.begin(), it3 = v1.cbegin(), it4 = v2.cbegin();
>Show an example of each of the six ways to create and initialize a vector. Explain what values each vector contains.
```cpp
vector<int> vec; // 0
vector<int> vec; // vec is empty
vector<int> vec(10); // 0
vector<int> vec(10, 1); // 1
vector<int> vec{ 1, 2, 3, 4, 5 }; // 1, 2, 3, 4, 5
Expand Down

0 comments on commit c931439

Please sign in to comment.