atoiの使い方

atoiはancii to integerの略だそうです。
Cの標準ライブラリの関数です。




/* add.c */
#include<stdio.h> // printf
#include<stdlib.h>// atoi

int main(int argc, int *argv[])
{
int a, b, c;

//ascii to integer
//文字列をint型の変数に変換する
// convert a string to an integer
a = atoi(argv[1]);
b = atoi(argv[2]);
c = a + b;

printf("%d + %d = %d\n", a,b,c);

return 0;
}


$ gcc -o add add.c
$ ./add 1 2
1 + 2 = 3