malloc.c 258 B

1234567891011121314
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(int argc, char** argv) {
  4. for (int i = 0; i < 100000; i++) {
  5. malloc(16);
  6. malloc(32);
  7. malloc(64);
  8. malloc(128);
  9. malloc(256);
  10. malloc(512);
  11. }
  12. return 0;
  13. }