在C語言中,可以使用atoi()
和atof()
函數將字符串轉換為數字。
atoi()
函數用于將字符串轉換為整數。它的原型如下:int atoi(const char* str);
其中,str
是要轉換的字符串,函數返回轉換后的整數。注意,如果字符串中包含非數字字符,則轉換會停止,并返回前面已經轉換好的整數。
示例代碼:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("轉換后的整數為:%d\n", num);
return 0;
}
atof()
函數用于將字符串轉換為浮點數。它的原型如下:double atof(const char* str);
其中,str
是要轉換的字符串,函數返回轉換后的浮點數。注意,與atoi()
函數類似,如果字符串中包含非數字字符,則轉換會停止,并返回前面已經轉換好的浮點數。
示例代碼:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "3.14159";
double num = atof(str);
printf("轉換后的浮點數為:%f\n", num);
return 0;
}