how to create array in cpp using stl code example
Example 1: array syntax in c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 2: array syntax in c++
int foo[] = { 10, 20, 30 };
int foo[] { 10, 20, 30 };
int foo [] = { 16, 2, 77, 40, 12071 };
int foo[] = { 10, 20, 30 };
int foo[] { 10, 20, 30 };