c·c++/c 프로그래밍

fgets로 파일읽기

바로이순간 2012. 3. 27. 10:20

#include <stdio.h>

 

int main() {

  FILE *fin;

  char buf[100];


  fin=fopen("input.txt", "r");

  if(fin==NULL) {

    printf("file: input.txt does not exist!");

    return -1;

  }


  while(!feof(fin)) {

    fgets(buf, 100, fin);

    printf("%s", buf);

  }


  fclose(fin);

 

  return 0;

}