array output 4197896 c++ code example
Example 1: array declaration c++
int foo [5];
Example 2: how to make a array in c++
// datatype var_name[howmuch value you need to store] = {values, values}
int a[5] = {1, 2 3, 4, 5};
int foo [5];
// datatype var_name[howmuch value you need to store] = {values, values}
int a[5] = {1, 2 3, 4, 5};