【C言語】strtoul関数の使い方

strtoul関数は、string1 を、符号なしの long 型整数に変換します。

関数名strtoul
ヘッダー#include <stdlib.h>
関数プロトタイプunsigned long int strtoul(const char *string1, char **string2, int base);
詳細string1 を、符号なしの long 型整数に変換します。

このブログの人気の投稿

【C言語】samequantumd64関数の使い方

【C言語】setlocale関数の使い方