在C語言中,可以使用標準庫函數atoi()
或strtol()
來將字符串轉換成數字。
atoi()
函數:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The converted number is: %d\n", num);
return 0;
}
strtol()
函數:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
long num = strtol(str, NULL, 10);
printf("The converted number is: %ld\n", num);
return 0;
}
其中,strtol()
函數可以將字符串轉換成長整型數字,第一個參數為要轉換的字符串,第二個參數為一個指針,用于存放轉換后的字符串的結尾位置,第三個參數為轉換的基數,一般為10。