在C語言中,可以使用幾個函數將字符串轉換為數字類型:
atoi()
函數將字符串轉換為整數。atoi()
函數接受一個字符串作為參數,并返回對應的整數值。但是需要注意,如果字符串中包含非數字字符,則會截取到第一個非數字字符之前的部分進行轉換。示例代碼如下:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("轉換后的整數為:%d\n", num);
return 0;
}
atof()
函數將字符串轉換為浮點數。atof()
函數也接受一個字符串作為參數,并返回對應的浮點數值。示例代碼如下:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "3.14";
float num = atof(str);
printf("轉換后的浮點數為:%f\n", num);
return 0;
}
sscanf()
函數使用格式化字符串進行轉換。sscanf()
函數可以根據指定的格式從字符串中提取相應的值。示例代碼如下:#include <stdio.h>
int main() {
char str[] = "567";
int num;
sscanf(str, "%d", &num);
printf("轉換后的整數為:%d\n", num);
return 0;
}
這些函數在將字符串轉換為數字時,需要注意字符串的格式和所需轉換的數據類型。