C 库函数 - atoi()

描述

C 库函数 int atoi(const char *str) 把参数 str 所指向的字符串转换为一个整数(类型为 int 型)。

声明

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

  1. int atoi(const char *str)

参数

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

返回值

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

实例

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

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. int main()
  5. {
  6. int val;
  7. char str[20];
  8. strcpy(str, "98993489");
  9. val = atoi(str);
  10. printf("字符串值 = %s, 整型值 = %d\n", str, val);
  11. strcpy(str, "jishuchi.com");
  12. val = atoi(str);
  13. printf("字符串值 = %s, 整型值 = %d\n", str, val);
  14. return(0);
  15. }

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

  1. 字符串值 = 98993489, 整型值 = 98993489
  2. 字符串值 = jishuchi.com, 整型值 = 0