how to initialize an array in cpp code example
Example 1: initialize an array in c++
int nums[100] = {0}; // initiallize all values to 0
int nums[5] = {1,2,3,4,5};
// type name[size] = {values};
Example 2: how to make an array c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 3: c++ initialise array
int nCount[] = {1, 2, 3, 4, 5};
Example 4: 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};