how to take the second parameter of an index of an array in c++ code example
Example 1: how to make a array in c++
// datatype var_name[howmuch value you need to store] = {values, values}
int a[5] = {1, 2 3, 4, 5};
Example 2: initialize array c++
int foo [5];