描述
C庫函數double strtod(const char *str, char **endptr)轉換參數指向的字符串str到一個浮點數(雙精度型)。如果endptr不是 NULL,則指向轉換中使用的最後一個字符之後的字符的指針存儲在 endptr 引用的位置。
聲明
以下是 strtod() 函數的聲明。
double strtod(const char *str, char **endptr)
參數
str- 這是要轉換為字符串的值。
endptr- 這是對已分配的 char* 類型對象的引用,其值由函數設置為 str 中數值之後的下一個字符。
返回值
此函數將轉換後的浮點數作為雙精度值返回,否則返回零值 (0.0)。
示例
下麵的例子展示了 strtod() 函數的用法。
#include <stdio.h>
#include <stdlib.h>
int main () {
char str[30] = "20.30300 This is test";
char *ptr;
double ret;
ret = strtod(str, &ptr);
printf("The number(double) is %lf\n", ret);
printf("String part is |%s|", ptr);
return(0);
}
讓我們編譯並運行上麵的程序,將產生以下結果 -
The number(double) is 20.303000 String part is | This is test|
相關用法
- C語言 strtol()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
- C語言 strtoul()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strcat()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strerror()用法及代碼示例
- C語言 strpbrk()用法及代碼示例
- C語言 strnset()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strtod()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。