温馨提示×

c语言atoi函数的用法是什么

小亿
123
2023-11-24 22:54:57
栏目: 编程语言

atoi函数的用法是将一个字符串转换成整数。

它的函数原型为: int atoi(const char *str);

参数说明:

  • str:要转换的字符串。

函数返回值:转换后的整数值。

使用示例:

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

int main() {
    char str[10] = "12345";
    int num = atoi(str);
    printf("%d\n", num);
    return 0;
}

输出结果:

12345

注意事项:

  • 如果无法进行转换,返回值为0。
  • 如果转换的结果超过了整数的表示范围,结果将是未定义的。

0