Technology knowledge has to be shared and made accessible for free. Join the movement.
array<int, 10> array; // defines an array of 10 integers // initializes values of all array elements for (int i; i < array.size(); ++i) { array[i] = i; }