在C語言中,可以使用atoi()
函數將字符串轉化為整數,使用atof()
函數將字符串轉化為浮點數。
例如,將字符串"123"轉化為整數可以使用以下代碼:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "123";
int num = atoi(str);
printf("The number is: %d\n", num);
return 0;
}
同樣,將字符串"3.14"轉化為浮點數可以使用以下代碼:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "3.14";
double num = atof(str);
printf("The number is: %f\n", num);
return 0;
}