home *** CD-ROM | disk | FTP | other *** search
- main() /* calloc.c -- demonstrates calloc() */
-
- {
- char *memloc, *p;
- int i;
-
- memloc = calloc(10,10);
- p = memloc;
- if (p != NULL)
- for (i = 0; i < 100; i++)
- printf("%d ", *p++);
- i = free(memloc);
- if (i == 0)
- puts("\nSuccessful release");
- else
- puts("\nRelease failure");
- puts("Correct ouput: 100 zeroes and Successful release");
- }