在C語言中,可以使用庫函數atoi()將字符數字轉化為數字。該函數的原型如下:
int atoi(const char *str);
其中,str是一個指向以null結尾的字符串的指針,該字符串表示要轉換的數字。該函數返回轉換后的整數值。
下面是一個例子:
#include <stdio.h>
#include <stdlib.h>
int main() {
char num_char[] = "12345";
int num_int = atoi(num_char);
printf("Converted number: %d\n", num_int);
return 0;
}
輸出:
Converted number: 12345