声明

下面是 atoi() 函数的声明。

int atoi(const char *str)

参数

str – 要转换为整数的字符串。

返回值

该函数返回转换后的长整数,如果没有执行有效的转换,则返回零。

实例

下面的实例演示了 atoi() 函数的用法。

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

int main()
{
   int val;
   char str[20];

   strcpy(str, "123456789");
   val = atoi(str);
   printf("字符串值 = %s, 整型值 = %d\n", str, val);

   return(0);
}

让我们编译并运行上面的程序,这将产生以下结果:

字符串值 = 123456789, 整型值 = 123456789

扩展知识:

  • C++ 中,使用该函数的方法

In C++ atoi() function can be used with the cstdlib header or library. So in order to use atoi() function in C++, we should include this header.

译:
在C ++中, atoi()函数可与cstdlib标头或库一起使用。 因此,为了在C ++中使用atoi()函数,我们应包含此标头。

#include <cstdlib>