在C语言中,可以使用标准库函数来读取txt文件的内容。以下是一个简单的示例代码:
#include <stdio.h>
int main() {
FILE *file;
char ch;
// 打开文件
file = fopen("example.txt", "r");
if (file == NULL) {
printf("无法打开文件\n");
return 1;
}
// 逐个字符读取文件内容并输出到控制台
while ((ch = fgetc(file)) != EOF) {
printf("%c", ch);
}
// 关闭文件
fclose(file);
return 0;
}
在上面的示例代码中,首先使用fopen
函数打开名为example.txt的txt文件,并指定为只读模式(“r”)。然后使用fgetc
函数逐个字符读取文件内容,并输出到控制台上。最后使用fclose
函数关闭文件。