c++ array syntax code example
Example 1: how to make an array c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 2: array declaration c++
int foo [5];
Example 3: arrays in c++
int baz [5] = { };
int foo [] = { 16, 2, 77, 40, 12071 };
int foo [5];
int baz [5] = { };