在C語言中,可以使用標準庫函數fgets()來讀取一行文件內容。具體步驟如下:
下面是一個示例代碼:
#include <stdio.h>
int main() {
FILE *file;
char line[100];
file = fopen("example.txt", "r");
if (file == NULL) {
printf("Error opening file.\n");
return 1;
}
while (fgets(line, sizeof(line), file) != NULL) {
printf("%s", line);
}
fclose(file);
return 0;
}
在上面的示例中,程序打開了名為"example.txt"的文件,并使用fgets()函數讀取文件中的每一行內容,然后將內容打印到控制臺上。最后關閉文件。