brintos

brintos / llvm-project-archived public Read only

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