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 |
$ |