1、简单了解 #include < stdlib.h > stdlib.h中,包含了C语言的一些常用库函数。 如动态内存相关的malloc, realloc,zalloc,calloc,free等。 随机数相关的rand,srand等。 系统相关的system, getenv,setenv等。 字符串转数值函数,atoi, atof,strtoul等。 如果在代码中,调用了这个头文件中的函数或者宏定义,则需引用该头文件。 2、五种类型 #include <assert.……