This media is not supported in your browser
VIEW IN TELEGRAM
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "RU");
const int SIZE = 5;
int arr[SIZE];
for (int i = 0; i < SIZE; i++) {
arr[i] = i;
cout << "Index = number = " << arr[i] << "\n";
}
}