init array c++ code example
Example 1: how to make an array c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 2: c++ initialise array
int nCount[] = {1, 2, 3, 4, 5};
Example 3: array declaration c++
int foo [5];
Example 4: c++ initialize array
int arr[3] = {1, 5, 4};