在C语言中,可以使用库函数atoi
或strtol
来实现字符串转换为数字的功能。
atoi
函数:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The number is: %d\n", num);
return 0;
}
strtol
函数:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
char *endptr;
long num = strtol(str, &endptr, 10);
if (*endptr != '\0') {
printf("Invalid number\n");
} else {
printf("The number is: %ld\n", num);
}
return 0;
}
这两种方法都可以将字符串转换为对应的整数,但是strtol
函数更加灵活,可以处理更多的异常情况,比如字符串中包含非数字字符。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言中如何给字符串赋值