位置:首页 > 高级语言 > C语言标准库 > atoi() - C语言库函数

atoi() - C语言库函数

C库函数 int atoi(const char *str) 转换为字符串参数str为整数(int型)。 

声明

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

int atoi(const char *str)

参数

  • str -- 这是一个整数的字符串表示形式。

返回值

这个函数返回一个int值转换的整数。如果没有有效的转换可以执行,它返回零。

例子

下面的例子显示atoi() 函数的用法。

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

int main()
{
   int val;
   char str[20];
   
   strcpy(str, "98993489");
   val = atoi(str);
   printf("String value = %s, Int value = %d
", str, val);

   strcpy(str, "gitbook.net");
   val = atoi(str);
   printf("String value = %s, Int value = %d
", str, val);

   return(0);
}

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

String value = 98993489, Int value = 98993489
String value = gitbook.net, Int value = 0