在C語言中,你可以使用文件操作函數(shù)來讀取txt文件并輸出文件內(nèi)容。
下面是一個簡單的例子:
#include <stdio.h>
int main() {
FILE *file;
char ch;
// 打開txt文件
file = fopen("file.txt", "r");
if (file == NULL) {
printf("無法打開文件\n");
return 1;
}
// 逐個字符讀取文件內(nèi)容并輸出
ch = fgetc(file);
while (ch != EOF) {
printf("%c", ch);
ch = fgetc(file);
}
// 關(guān)閉文件
fclose(file);
return 0;
}
請注意,以上代碼中假設文件名為"file.txt",你需要將文件名替換為你要讀取的txt文件名稱。另外,你也可以根據(jù)自己的需求修改代碼以滿足其他功能。