tail head cat sleep
QR code linking to this page

manページ  — ATOL

名称

atol ASCII 文字列を長整数に変換する

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <stdlib.h>

long
atol(const char *nptr);

解説

atol() 関数は、 nptr が指す文字列の先頭部分を long integer 表現に変換します。

これは次と同等です。

strtol(nptr, (char **)NULL, 10);

関連項目

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

規格

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

ATOL (3) June 4, 1993

tail head cat sleep
QR code linking to this page


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

C is a language that combines all the elegance and power of assembly language with all the readability and maintainability of assembly language.