在C語言中可以使用atoi
函數將字符串轉換為整數。atoi
函數的原型如下:
int atoi(const char *str);
atoi
函數將參數str
指向的字符串轉換為一個整數并返回。具體的實現如下:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The converted integer is %d\n", num);
return 0;
}
輸出結果:
The converted integer is 12345
注意,atoi
函數會忽略字符串中的空格字符,并且當字符串無法轉換為整數時,atoi
函數會返回0。