#close #open #write #include int close(int handle); 사용중인 파일을 닫는다. close 함수는 handle과 관련있는 파일을 닫습니다. 파일을 성공적으로 닫으면 0, 실패하면 -1을 반환합니다. 참고: fclose, open, creat, .. #include #include #include #include int main() { int handle; char buffer[] = "abcdefg"; handle = open("testfile.txt", O_CREAT); if (handle > -1) { write(handle, buffer, strlen(buffer)); close(handle); } else printf("File open Error.\n"); ..