관리 메뉴

드럼치는 프로그래머

[C] 파일입출력 > 파일의개방,종결 기본소스 본문

★─Programing/☆─C | C++

[C] 파일입출력 > 파일의개방,종결 기본소스

드럼치는한동이 2007. 9. 6. 21:07

#include <stdio.h>

int main(void)
{
 int state;

 /* 파일의 개방 */
 FILE * file = fopen("Test.txt", "wt");
 if(file==NULL){
  printf("file open error!\n");
  return 1;
 }


 /* 파일의 종결 */
 state=fclose(file);
 if(state!=0){
  printf("file close error!\n");
  return 1;
 }

 return 0;
}

Comments