在C语言中,可以使用标准库函数来将文件内容输出到屏幕。以下是一个简单的示例:
#include <stdio.h>
int main() {
FILE *file;
char ch;
// 打开文件
file = fopen("filename.txt", "r");
if (file == NULL) {
printf("无法打开文件\n");
return 1;
}
// 逐字符读取并输出到屏幕
while ((ch = fgetc(file)) != EOF) {
printf("%c", ch);
}
// 关闭文件
fclose(file);
return 0;
}
请将上述代码中的filename.txt
替换为你想要读取的文件路径和文件名。该程序将逐字符读取文件内容,并使用printf
函数将字符输出到屏幕上。