在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
函數關閉文件。