C 語言標準函數庫分類導覽 - stdlib.h atof()

stdlib.h 的函數 atof() 接受字串當作參數,將字串中的數字轉換為 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://pydoing.blogspot.com/
    檔名:catof.c
    功能:示範 stdlib.h 中函數 atof() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: