描述
C庫函數void *calloc(size_t nitems, size_t size)分配請求的內存並返回指向它的指針。區別在於malloc和calloc是 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語言 clock()用法及代碼示例
- C語言 ctime()用法及代碼示例
- C語言 cleardevice()用法及代碼示例
- C語言 ceil()用法及代碼示例
- C語言 cos()用法及代碼示例
- C語言 closegraph()用法及代碼示例
- C語言 cosh()用法及代碼示例
- C語言 clearerr()用法及代碼示例
- C語言 宏 assert()用法及代碼示例
- C語言 vprintf()用法及代碼示例
- C語言 宏 va_start()用法及代碼示例
- C語言 setlocale()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 sinh()用法及代碼示例
- C語言 宏 offsetof()用法及代碼示例
- C語言 feof()用法及代碼示例
- C語言 scanf()用法及代碼示例
- C語言 imagesize()用法及代碼示例
- C語言 getarcoords()用法及代碼示例
- C語言 isdigit()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - calloc()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。