要讀取當前目錄中的txt文件,您可以使用以下代碼示例來實現:
#include <stdio.h>
int main() {
FILE *file;
char filename[100];
char line[100];
// 獲取當前目錄下txt文件的文件名
printf("Enter the name of the txt file in the current directory: ");
scanf("%s", filename);
// 打開文件
file = fopen(filename, "r");
// 檢查文件是否成功打開
if (file == NULL) {
printf("Error opening file.\n");
return 1;
}
// 讀取文件內容并輸出到控制臺
while(fgets(line, sizeof(line), file)) {
printf("%s", line);
}
// 關閉文件
fclose(file);
return 0;
}
在這個示例中,用戶需要輸入要讀取的txt文件的文件名,然后程序會打開該文件并逐行讀取文件內容并輸出到控制臺。最后,程序會關閉文件。請注意,這里假設txt文件在當前目錄下。您也可以根據需要修改代碼以適應不同的文件路徑。