int * array c++ code example
Example 1: how to make an array c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 2: arrays in C++
int leng = 10;
double X[leng];
int foo [] = { 16, 2, 77, 40, 12071 };
int leng = 10;
double X[leng];