home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / MALLOC.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  464 b   |  20 lines

  1. main()    /* malloc.c -- demonstrates malloc() and free() */
  2. {
  3. char *memloc;
  4. int i;
  5. long l;
  6.  
  7.     memloc = malloc(1000);
  8.     l = (long) memloc;
  9.     printf("Allocated memory starts at %ld\n", l);
  10.     i = free(memloc);
  11.     if (i == 0)
  12.         puts("Successful release");
  13.     else
  14.         puts("Release failure");
  15.     memloc = malloc(1000);
  16.     l = (long) memloc;
  17.     printf("New allocation starts at %ld\n", l);
  18.     puts("Correct output: numbers are system dependent but should be equal");
  19. }
  20.