C庫函式 double atof(const char *str)轉換的字串引數str一個浮點數(double型別)。
以下是atof() 函式的宣告。
double atof(const char *str)
str -- 這是表示一個浮點數位的字串。
這個函式返回轉換後的浮點數作為一個double值。如果沒有有效的轉換可以執行,它返回零(0.0)。
下面的例子顯示atof() 函式的用法。
#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { float val; char str[20]; strcpy(str, "98993489"); val = atof(str); printf("String value = %s, Float value = %f ", str, val); strcpy(str, "tw511.com"); val = atof(str); printf("String value = %s, Float value = %f ", str, val); return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果:
String value = 98993489, Float value = 98993488.000000 String value = tw511.com, Float value = 0.000000