#include int main(void) { double big_array[10000000]; for (int i = 0; i < 10000000; i++) { big_array[i] = i; } return 0; }