I've already broken my head over what's wrong here. In the output I literally get nothing.
It is very strange that nothing is output through a normal cout.
Help me please! Thank you.
int main() {
    int x = 111111;
    array<int, 10> numbers;
    numbers.fill(8);
    const auto numbers_copy = numbers;
    int y = 222222;
    
    for (int* i = &y; i <= &x; i++) {
        cout << *i << ' ';
    }
    cout << endl;
}
 
     
    