在C語言中,可以使用標準庫函數atoi()
來實現將字符串轉換為數字的功能。atoi()
函數的原型如下:
int atoi(const char *str);
該函數接受一個以null結尾的字符串作為參數,然后將其轉換為對應的整數值并返回。例如:
#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"轉換為整數12345并輸出。需要注意的是,如果字符串無法轉換為整數,atoi()
函數將返回0。