请问C语言中的stdio,malloc,calloc,realloc是什么的简写?

来源:百度知道 编辑:UC知道 时间:2024/05/31 02:54:02

stdio -- STanDard Input Output 标准输入输出
malloc -- Memory ALLOCation 内存分配
calloc -- C lib memory ALLOCation (C库) 内存分配
realloc -- RE-ALLOCation (重新,再)分配
取自右边的大写字母

第一个是包含一些输入输出函数的头文件。后面的是分配空间的一些库函数。

standard input output
memory allocation
calloc..
re - allocation