tail head cat sleep
QR code linking to this page

manページ  — ATOF

名称

atof ASCII 文字列を倍精度浮動小数点数に変換する

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <stdlib.h>

double
atof(const char *nptr);

解説

atof() 関数は、 nptr が指している文字列の最初の部分を、 double 表現に変換します。

これは次と同等です。

strtod(nptr, (char **)NULL);

関連項目

atoi(3), atol(3), strtod(3), strtol(3), strtoul(3)

規格

atof() 関数は ISO/IEC 9899:1990 ("ISO C90") に適合しています。

ATOF (3) June 4, 1993

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

This philosophy, in the hands of amateurs, leads to inexplicably mind-numbing botches like the existence of two programs, “head” and “tail,” which print the first part or the last part of a file, depending. Even though their operations are duals of one another, “head” and “tail” are different programs, written by different authors, and take different options!
— The Unix Haters' handbook