c++ array in arra code example
Example 1: c++ arrray
assert((std::is_same_v<int, int>))
Example 2: array syntax in c++
int foo[] = { 10, 20, 30 };
int foo[] { 10, 20, 30 };
assert((std::is_same_v<int, int>))
int foo[] = { 10, 20, 30 };
int foo[] { 10, 20, 30 };