在C語言中,可以使用atoi()
函數將字符串轉換為int類型。
#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;
}
在上面的示例中,我們將字符串"12345"轉換為整數,并將結果存儲在變量num
中。然后我們打印出轉換后的整數值。