描述
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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。