alloc.c 236 B

123456789101112
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(int argc, char ** argv) {
  4. char * ptr = (char *)malloc(256);
  5. printf("malloc %p\n", ptr);
  6. int i;
  7. for(i = 0; i < 256; i++) {
  8. ptr[i] = (char)i;
  9. }
  10. free(ptr);
  11. }