CALLOC.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <alloc.h>
  3. void main(void)
  4.  {
  5.    char *string;
  6.    int *int_values;
  7.    float *float_values;
  8.    if ((string = (char *) calloc(50, sizeof(char))))
  9.      printf("Successfully allocated a 50 byte stringn");
  10.    else
  11.      printf("Error allocating stringn");
  12.    if ((int_values = (int *) calloc(100, sizeof(int))) != NULL)
  13.      printf("Successfully allocated int_values[100]n");
  14.    else 
  15.      printf("Error allocating int_values[100]n");
  16.    if ((float_values = (float *) calloc(25, sizeof(float))) != NULL)
  17.      printf("Successfully allocated float_values[25]n");
  18.    else
  19.      printf("Error allocating float_values[25]n");
  20.  }