當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 atof()用法及代碼示例



描述

C庫函數double atof(const char *str)轉換字符串參數str到一個浮點數(雙精度型)。

聲明

以下是 atof() 函數的聲明。

double atof(const char *str)

參數

  • str─ 這是具有浮點數表示的字符串。

返回值

此函數將轉換後的浮點數作為雙精度值返回。如果無法執行有效轉換,則返回零 (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\n", str, val);

   strcpy(str, "tutorialspoint.com");
   val = atof(str);
   printf("String value = %s, Float value = %f\n", str, val);

   return(0);
}

讓我們編譯並運行上麵的程序,它會產生以下結果——

String value = 98993489, Float value = 98993488.000000
String value = tutorialspoint.com, Float value = 0.000000

相關用法


注:本文由純淨天空篩選整理自 C library function - atof()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。