How to initialize an array from 1 to N the fastest in Cpp code example
Example 1: c++ initialise array
int nCount[] = {1, 2, 3, 4, 5};
Example 2: initialize array c++
int foo [5];
int nCount[] = {1, 2, 3, 4, 5};
int foo [5];