在C語言中,可以使用庫函數atoi()
來將字符型轉換成數值。該函數的原型為int atoi(const char *str)
,它將參數str
指向的字符串轉換成一個整數并返回。
示例代碼如下:
#include <stdio.h>
#include <stdlib.h>
int main() {
char c = '5';
int num = atoi(&c);
printf("字符型變成數值: %d\n", num);
return 0;
}
在上面的示例中,將字符'5'
轉換成整數并輸出結果。