atol

 

書式
long atol(const char *str);

機能
文字列の先行する空白を無視し、符号・数字以外の文字の手前までをlong型に変換。

戻り値
整数。

ヘッダーファイル
stdlib.h

 

使用例

long a;
char *s = "-123456789";
a = atol(s);