在C語(yǔ)言中,可以使用標(biāo)準(zhǔn)庫(kù)函數(shù)atoi()
或者sscanf()
來(lái)將字符串轉(zhuǎn)換為整數(shù)。
使用atoi()
函數(shù)示例如下:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "1234";
int num = atoi(str);
printf("The integer is: %d\n", num);
return 0;
}
使用sscanf()
函數(shù)示例如下:
#include <stdio.h>
int main() {
char str[] = "1234";
int num;
sscanf(str, "%d", &num);
printf("The integer is: %d\n", num);
return 0;
}