array on c++ code example
Example 1: 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};
Example 2: creare array con c++
#include <iostream>
int main()
{
int myArray[] {2, 4, 6, 8, 10};
for (int i=0; i<5; i++)
{
std::cout << "index: " << i << " - value: " << myArray[i] << "\n";
}
return 0;
}
Example 3: arrays in c++
int baz [5] = { };