C語言 庫函數 atof()
C語言 庫函數 atof()
C 庫函數 double atof(const char *str) 把參數 str 所指向的字符串轉換為一個浮點數(類型為 double 型)。
1. 聲明
下面是 atof() 函數的聲明。
double atof(const char *str)
2. 參數
- str -- 要轉換為浮點數的字符串。
3. 返回值
函數返回轉換后的雙精度浮點數,如果沒有執行有效的轉換,則返回零(0.0)。
4. 實例
下面的實例演示了 atof() 函數的用法。
#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { float val; char str[20]; strcpy(str, "98993489"); val = atof(str); printf("字符串值 = %s, 浮點值 = %f\n", str, val); strcpy(str, "w3cschool.cn"); val = atof(str); printf("字符串值 = %s, 浮點值 = %f\n", str, val); return(0); }
讓我們編譯并運行上面的程序,這將產生以下結果:
字符串值 = 98993489, 浮點值 = 98993488.000000 字符串值 = w3cschool.cn, 浮點值 = 0.000000