在C语言中,可以使用atoi
函数将字符串转换为整数。该函数的原型为:
int atoi(const char *str);
使用示例:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The number is: %d\n", num);
return 0;
}
以上代码将字符串"12345"转换为整数并打印输出。