用C++写一个读取txt所有数据的代码
时间: 2023-04-11 22:00:58 浏览: 95
好的,以下是用C语言读取txt文件中所有数据的代码:
```c
#include <stdio.h>
int main() {
FILE *fp;
char ch;
fp = fopen("file.txt", "r"); // 打开文件
if (fp == NULL) { // 判断文件是否打开成功
printf("文件打开失败!");
return 0;
}
while ((ch = fgetc(fp)) != EOF) { // 逐个字符读取文件内容
printf("%c", ch);
}
fclose(fp); // 关闭文件
return 0;
}
```
其中,`file.txt` 是要读取的文件名,可以根据实际情况进行修改。
阅读全文