adding line breaker

This commit is contained in:
Jidong Xiao
2023-09-01 00:48:26 -04:00
parent 1d24e00c89
commit 7775d692bc

View File

@@ -49,6 +49,7 @@ where h is as defined above.
It can be treated like an ordinary array using the subscripting operator.
A vector knows how many elements it stores! (unlike C arrays)
There is NO automatic checking of subscript bounds.
Heres how we create an empty vector of integers:
```cpp
std::vector<int> scores;