#include using namespace std; int main() { int *MyIntPointer; for(int i=0; i<200000; i++) { MyIntPointer = new int[50000]; //delete [] MyIntPointer; } cout<<"Done.\n"; return 0; }