#include <stdio.h>
#include <vector>
using namespace std;
int main()
{
    vector<int> numbers;
    numbers.resize(10001);
    for (int i = 0; i < 10000; i++)
    {
        numbers.push_back(1);
    }
    return 0;
}
If I put more than 5000 1s in the vector, I get the following error, I don't understand.
There is no doubt about it other than the memory overflow. But int type = 4 bytes, so 4byte * 10000 = 40000byte 0.04mb
Why am I getting an error?

 
     
    