1 2 3 4 5 6 7 8 9
int main() { int a[256*1024] = {}; for (int i = 0; i < 256*1024; i++) { if (a[i] != 0) { return 1; } } return 0; }