在C语言中,atoi()函数是哪几个英文字母的缩写

如题所述

是: ascii to integer
把数字形式的字符串转换成整数
比如
char *s = "123.45";
int n = atoi(s);
那么 n的值就是123
温馨提示:答案为网友推荐,仅供参考
第1个回答  2017-07-08
alpha to integer
即,字符转整数
相似回答