函数atoi()有什么用处,他的头文件是什么?它在Linux下的Vi编辑器能用吗?

如题所述

1、atoi (表示 ascii to integer)是把字符串转换成整型数的一个函数,应用在计算机程序和办公软件中。

2、头文件: #include <stdlib.h>

3、它在Linux下的Vi编辑器能用

int atoi(const char *nptr) 函数会扫描参数 nptr字符串,会跳过前面的空白字符(例如空格,tab缩进)等。如果 nptr不能转换成 int 或者 nptr为空字符串,那么将返回 0  。特别注意,该函数要求被转换的字符串是按十进制数理解的。

扩展资料

范例:
1>

#include <stdlib.h>

#include <stdio.h>

int main(void)

{

int n;

char *str = "12345.67";

n = atoi(str);

printf("string = %s integer =%d\n", str, n);

return 0;

}

执行结果

string = 12345.67 integer = 12345.000000

2>

#include <stdlib.h>

#include <stdio.h>

int main()

{

char a[] = "-100" ;

char b[] = "123" ;

int c ;

c = atoi( a ) + atoi( b ) ;

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

return 0;

}

执行结果

c = 23

参考资料来源:百度百科—atoi()

温馨提示:答案为网友推荐,仅供参考
相似回答