當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 calloc()用法及代碼示例



描述

C庫函數void *calloc(size_t nitems, size_t size)分配請求的內存並返回指向它的指針。區別在於malloccalloc是 malloc 沒有將內存設置為零,而 calloc 將分配的內存設置為零。

聲明

以下是 calloc() 函數的聲明。

void *calloc(size_t nitems, size_t size)

參數

  • nitems─ 這是要分配的元素數。

  • size- 這是元素的大小。

返回值

此函數返回一個指向已分配內存的指針,如果請求失敗,則返回 NULL。

示例

下麵的例子展示了 calloc() 函數的用法。

#include <stdio.h>
#include <stdlib.h>

int main () {
   int i, n;
   int *a;

   printf("Number of elements to be entered:");
   scanf("%d",&n);

   a = (int*)calloc(n, sizeof(int));
   printf("Enter %d numbers:\n",n);
   for( i=0 ; i < n ; i++ ) {
      scanf("%d",&a[i]);
   }

   printf("The numbers entered are:");
   for( i=0 ; i < n ; i++ ) {
      printf("%d ",a[i]);
   }
   free( a );
   
   return(0);
}

讓我們編譯並運行上麵的程序,它會產生以下結果——

Number of elements to be entered:3
Enter 3 numbers:
22
55
14
The numbers entered are:22 55 14

相關用法


注:本文由純淨天空篩選整理自 C library function - calloc()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。