allocate.cpp (99B)
1 bool f(int big_number) { 2 int *a = new int[big_number]; 3 return true; 4 } 5 6 int main() { 7 return 0; 8 }
taming-cppExperiments with C++ and comparisons with C | |
git clone https://git.tronto.net/taming-cpp | |
Download | Log | Files | Refs | README |
allocate.cpp (99B)
1 bool f(int big_number) { 2 int *a = new int[big_number]; 3 return true; 4 } 5 6 int main() { 7 return 0; 8 }