C语言中atof函数功能及用法

    技术2022-05-12  27

    函数名: atof 功  能: 把字符串转换成浮点数 用  法: double atof(const char *nptr); 程序例: #include <stdlib.h> #include <stdio.h>

    int main(void) {    float f;    char *str = "12345.67";

       f = atof(str);    printf("string = %s float = %f/n", str, f);    return 0; }


    最新回复(0)