在C語言中,可以使用atoi()
函數將字符串轉換為整數。
atoi()
函數的聲明如下:
int atoi(const char *str);
其中,str
是要轉換的字符串,函數返回轉換后的整數。
示例代碼:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("%d\n", num);
return 0;
}
輸出:
12345
需要注意的是,如果字符串不能轉換為整數,atoi()
函數將返回0。此外,如果字符串超出了整數的表示范圍,結果是不確定的。如果需要對轉換過程進行更詳細的控制,可以使用strtol()
函數。