home *** CD-ROM | disk | FTP | other *** search
- main() /* malloc.c -- demonstrates malloc() and free() */
- {
- char *memloc;
- int i;
- long l;
-
- memloc = malloc(1000);
- l = (long) memloc;
- printf("Allocated memory starts at %ld\n", l);
- i = free(memloc);
- if (i == 0)
- puts("Successful release");
- else
- puts("Release failure");
- memloc = malloc(1000);
- l = (long) memloc;
- printf("New allocation starts at %ld\n", l);
- puts("Correct output: numbers are system dependent but should be equal");
- }