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

来源:百度知道 编辑:UC知道 时间:2024/06/11 17:54:32

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&