C 速查手冊

11.4.1 atof()

stdlib.h函數 (function) atof() 接受字串 (string) 當作參數 (parameter) ,將字串中的數字轉換為 double 型態的浮點數。

以下程式示範函數 atof() 對不同字串的轉換結果

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

int main(void)
{
    printf("%f\n", atof("54321"));
    printf("%f\n", atof("54.321"));
    printf("%f\n", atof("$54321"));
    printf("%f\n", atof("$54.321"));
    printf("%f\n", atof("54.321%"));
    printf("%f\n", atof("5.4321+33=?"));
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:catof.c
    功能:示範 stdlib.h 中函數 atof() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc catof.c
$ a.out
54321.000000
54.321000
0.000000
0.000000
54.321000
5.432100
$

上一頁 11.4 通用工具 stdlib.h
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.4.2 atoi()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁