mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-09 00:46:12 +00:00
11 lines
154 B
C
11 lines
154 B
C
#include <stdlib.h>
|
|
|
|
int main(void)
|
|
{
|
|
int i;
|
|
for (i = 0; i < 200; i++) {
|
|
malloc(400*i); // Divisible by 16 -- no slop.
|
|
}
|
|
return 0;
|
|
}
|