C语言杂
atof——把字符串转化成浮点型
C语言标准库
头文件: #include <stdlib.h>
定义函数:double atof(const char *nptr);
#include <stdio.h> #include <stdlib.h> int main(void) { char *str="123.45"; double temp; temp=atof(str); printf("string=%s\n num=%lf",str,temp); return 0; }
运行结果:
string=123.45 num=123.450000