c语言读取txt文件数据
时间: 2023-09-09 19:13:15 浏览: 102
以下是用C语言读取txt文件数据的示例代码:
```c
#include <stdio.h>
int main() {
FILE *fp;
char ch;
fp = fopen("data.txt", "r"); // 打开文件
if (fp == NULL) {
printf("无法打开文件!\n");
return 1;
}
while ((ch = fgetc(fp)) != EOF) { // 逐个字符读取文件内容
printf("%c", ch); // 打印每个字符
}
fclose(fp); // 关闭文件
return 0;
}
```
运行此程序将打开名为"data.txt"的文件并逐个字符读取其内容,最后将文件关闭。如果文件无法打开,则打印错误消息并返回1。
阅读全文