#include <stdlib.h> 这个头文件是什么作用?
2022-09-28 · 百度认证:北京惠企网络技术有限公司官方账号
提供编译有关的信息。
#include<stdio.h>称为编译预处理命令。编译预处理命令还有很多,它们都以“#”开头,并且不用分号结尾,所以是c语言的程序语句。
在使用标准函数库中的输入输出函数时,编译系统要求程序提供有关的信息(例如对这些输入输出函数的声明),#include<stdio.h>的作用就是用来提供这些信息的,stdio是“standard input & output”的缩写,即有关标准输入输出的信息。
扩展资料
在头文件<stdlib.h>中说明了用于数值转换、内存分配以及具有其他相似任务的函数。
1、atof
#include<stdlib.h>double atof(const char*str);把字符串str转换成double类型。等价于:strtod(str,(char**)NUL1)。
2、atoi
#include<stdlib.h>int atoi(const char*str);把字符串str转换成int类型。等价于:(int)strtol(str,(char**)NULL,10)。
3、atol
#include<stdlib.h>long atol(const char*str):把字符串str转换成long类型。等价于:strtol(str,(char**)NULL,10)。
4、strtod
#inelude<stdlib.h>double strtod(const char*start,char**end);
把字符串start的前缀转换成double类型。在转换中跳过start的前导空白符,然后逐个读入构成数的字符,任何非浮点数成分的字符都会终止上述过程。如果end不为uLL,则把未转换部分的指针保存在*end中。
如果结果上溢,返回带有适当符号的HUGE_VAL,如果结果下溢,那么函数返回0.在这两种情况下,errno均被置为ERANGE。
参考资料来源:<a href="https://baike.baidu.com/item/%23include%20/15269098" rel="nofollow noopener" class="iknow-ueditor-link" target="_blank" title="百度百科--#include <stdio.h>">百度百科--#include <stdio.h>