「C言語」atoi()関数で文字列を数値に変換するサンプル

構文
int atoi( const char *str );
strの文字列をint型数値に変換し、その値を返します。
サンプルコード

#include <stdio.h>
#include <stdlib.h>

int main(void) {

    char cft[] = "890";
    int res = atoi(cft);
    
    printf("res = %d", res);

    return 0;
}

実行結果
res = 890

C言語

Posted by arkgame