c语言中如何将字符串转换成float和double类型

本文提供了一个C语言源代码示例,展示了如何使用`strtof()`和`strtod()`函数将字符串转换为浮点数和双精度数,并解释了这些函数的工作原理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

c语言中如何将字符串转换成float和double类型

先贴上可编译运行的源代码:

file: a.cpp

#include <stdio.h>

#include <stdlib.h>
 int main ()
 {
         char szOrbits[] ="365.24";
         char* pEnd;
         float f1;
         f1 = strtof (szOrbits, &pEnd);
         printf("%f\n",f1);
         return 0;
 }

执行结果:

[tuxedo@imorcl yali_test]$ g++ a.cpp -o aaa
[tuxedo@imorcl yali_test]$ ./aaa
365.239990

 

man参考手册:在linux上 man strtod就能显示

NAME
       strtod, strtof, strtold - convert ASCII string to floating point number

SYNOPSIS
       #include <stdlib.h>

       double strtod(const char *nptr, char **endptr);

       #define _XOPEN_SOURCE=600   /* or #define _ISOC99_SOURCE */
       #include <stdlib.h>

       float strtof(const char *nptr, char **endptr);
       long double strtold(const char *nptr, char **endptr);

DESCRIPTION
       The  strtod(),  strtof(),  and  strtold() functions convert the initial portion of the string pointed to by nptr to double, float, and
       long double representation, respectively.

       。。。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值