home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / CALLOC.C < prev    next >
Encoding:
Text File  |  1985-02-08  |  363 b   |  19 lines

  1. main()    /* calloc.c -- demonstrates calloc() */
  2.  
  3. {
  4.     char *memloc, *p;
  5.     int i;
  6.  
  7.     memloc = calloc(10,10);
  8.     p = memloc;
  9.     if (p != NULL)
  10.         for (i = 0; i < 100; i++)
  11.             printf("%d ", *p++);
  12.     i = free(memloc);
  13.     if (i == 0)
  14.         puts("\nSuccessful release");
  15.     else
  16.         puts("\nRelease failure");
  17.     puts("Correct ouput: 100 zeroes and Successful release");
  18. }
  19.