no

 avatar
unknown
c_cpp
2 years ago
136 B
2
Indexable
int arr[] = { 1, 2, 3, 4, 5 };

  for (int i = 0; i < 5; i++)
    arr[i] *= 2;

  for (int i = 0; i < 5; i++)
    cout << arr[i] << " ";
Editor is loading...