how to initialize pointer array with values in c++ code example
Example 1: c++ initialize array
int arr[3] = {1, 5, 4};
Example 2: initialize vector of pointers c++
std::vector<int*> stuff;
int arr[3] = {1, 5, 4};
std::vector<int*> stuff;