반응형

c언어 파일 입출력 - 텍스트 파일 한줄씩 읽기

 

 

fopen(); feof(); fgets(); fclose();

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Read a text file one line at a time */
#include <stdio.h>
#include <stdbool.h>
 
int main() {
    const int max = 1024;
    char line[max];
    char *pLine;
    FILE *in = fopen("in.txt""r");
    while (!feof(in)) {
        pLine = fgets(line, max, in);
        printf("%s", pLine);
    }
    fclose(in);
}

 

 

[ in.text ]

 

반응형