strtod 将字符串转换成浮点数

头文件

#include <stdlib.h>

语法

double strtod( const char *start, char **end );

功能

函数返回带符号的字符串 start 所表示的浮点型数。字符串 end 指向所表示的浮点型数之后的部分。如果溢出发生,返回HUGE_VAL 或 -HUGE_VAL。

示例

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    char input[80], *endptr;
    double value;

    printf("Enter a floating point number:");
    gets(input);
    value = strtod(input, &endptr);
    printf("The string is %s the number is %lf\n", input, value);
    return 0;
}

输出结果:

Enter a floating point number:100
The string is 100 the number is 100.000000
关于
本网站专注于 Java、数据库(MySQL、Oracle)、Linux、软件架构及大数据等多领域技术知识分享。涵盖丰富的原创与精选技术文章,助力技术传播与交流。无论是技术新手渴望入门,还是资深开发者寻求进阶,这里都能为您提供深度见解与实用经验,让复杂编码变得轻松易懂,携手共赴技术提升新高度。如有侵权,请来信告知:hxstrive@outlook.com
公众号