calloc()

電腦程式,分配主存儲器。

名稱

函式名: calloc
功能: 分配主存儲器
用法: void *calloc(size_t nelem, size_t elsize);

程式例

#include <stdio.h>
#include <alloc.h>
int main(void)
{
char *str = NULL;
/* allocate memory for string */
str = calloc(10, sizeof(char));
/* copy "Hello" into string */
strcpy(str, "Hello");
/* display string */
printf("String is %s\n", str);
/* free memory */
free(str);
return 0;
}

相關詞條

相關搜尋

熱門詞條

聯絡我們