将字符串转换为数字 读取数据 将数据输出到文件 使用C语言
时间: 2024-05-02 18:23:15 浏览: 102
C语言实现将字符串转换为数字的方法
要将字符串转换为数字,可以使用C语言中的atoi()函数,例如:
```
char str[] = "123";
int num = atoi(str);
```
要读取数据,可以使用C语言中的fscanf()函数,例如:
```
FILE *fp;
int num;
fp = fopen("data.txt", "r");
fscanf(fp, "%d", &num);
fclose(fp);
```
要将数据输出到文件,可以使用C语言中的fprintf()函数,例如:
```
FILE *fp;
int num = 123;
fp = fopen("output.txt", "w");
fprintf(fp, "The number is %d.", num);
fclose(fp);
```
阅读全文