在C語言中,可以使用atoi()
函數將字符轉換為整數。atoi()
函數的原型如下:
int atoi(const char *str);
其中,str
是指向以空字符結尾的字符串的指針,該字符串表示一個整數。函數返回字符串所表示的整數。
以下是一個簡單的示例:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The integer value of the string is: %d\n", num);
return 0;
}
輸出結果:
The integer value of the string is: 12345