| 1 | #include <vector> |
|---|---|
| 2 | |
| 3 | int main() |
| 4 | { |
| 5 | |
| 6 | const char* string1 = "hello world"; |
| 7 | |
| 8 | std::vector<int> numbers; |
| 9 | numbers.push_back(x: 1); |
| 10 | numbers.push_back(x: 12); |
| 11 | numbers.push_back(x: 123); |
| 12 | numbers.push_back(x: 1234); |
| 13 | numbers.push_back(x: 12345); |
| 14 | numbers.push_back(x: 123456); |
| 15 | numbers.push_back(x: 1234567); // Set break point at this line. |
| 16 | |
| 17 | return 0; |
| 18 | } |
| 19 |
