int atoi(const char *str)
优质
小牛编辑
125浏览
2023-12-01
描述 (Description)
C库函数int atoi(const char *str)将字符串参数str转换为整数(类型为int)。
声明 (Declaration)
以下是atoi()函数的声明。
int atoi(const char *str)
参数 (Parameters)
str - 这是整数的字符串表示形式。
返回值 (Return Value)
此函数将转换的整数作为int值返回。 如果无法执行有效转换,则返回零。
例子 (Example)
以下示例显示了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\n", str, val);
strcpy(str, "iowiki.com");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);
return(0);
}
让我们编译并运行上面的程序,它将产生以下结果 -
String value = 98993489, Int value = 98993489
String value = iowiki.com, Int value = 0