[function] atoi()

662 ワード

[function] atoi()
ライブラリ:libc
タイトル:stdlib.h

  • ASCII文字を整数型に変更します.
  • atoi()関数はnptr指す文字列の先頭部分をint型に変更します.

  • これは以下の通りです.
  • (Int)strtol(nptr, NULL, 10);
  • atoi()関数は推奨されなくなりますstrtol()新しいコードでは使用できません.

  • 形式
    atoi(const char *nptr);
    const char*nptr:int型に変換する文字列
    戻り値
    int 형 데이터로 리턴
    使用例
    char c[] = “11”;
    printf("return(11) : %d\n”, atoi(c));	// return(11) : 11