Back
Close

Computing with Data

elgeish
576.6K views

Arrays

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;
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io