atof()函数详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了atof()函数详解相关的知识,希望对你有一定的参考价值。

atof()函数

atof():double atof(const char *str );

功 能: 把字符串转换成浮点数

str:要转换的字符串。

返回值:每个函数返回 double 值,此值由将输入字符作为数字解析而生成。 如果该输入无法转换为该类型的值,则返回值为 0.0。

函数说明 :atof()会扫描参数nptr字符串,跳过前面的空格字符,直到遇上数字或正负符号才开始做转换,而再遇到非数字或字符串结束时(‘\0‘)才结束转换,并将结果返回,str字符串可包含正负号、小数点或E(e)来表示指数部分。

 1  #include <stdio.h>
 2  #include <stdlib.h>
 3     int main(){
 4         char *a = "-100.23",
 5              *b = "200e-2",
 6              *c = "341",
 7              *d = "100.34cyuyan",
 8              *e = "cyuyan";
 9         printf("a = %.2f\n", atof(a));
10         printf("b = %.2f\n", atof(b));
11         printf("c = %.2f\n", atof(c));
12         printf("d = %.2f\n", atof(d));
13         printf("e = %.2f\n", atof(e));
14         system("pause");
15         return 0;
16   
执行结果:
a = -100.23
b = 2.00
c = 341.00
d = 100.34
e = 0.00






以上是关于atof()函数详解的主要内容,如果未能解决你的问题,请参考以下文章

atof()函数

字符串常用-----atof()函数,atoi()函数

字符串函数---atof()函数具体解释及实现(完整版)

UVA 465-- Overflow (atof 函数)

atof atoi atol strlod等函数

C语言atof()函数:将字符串转换为double(双精度浮点数)