일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- UNO
- Barcode
- file access
- public
- length
- Pointer
- java
- aduino
- Binary
- atmega328
- digitalRead
- APP
- flutter
- preprocessing
- SERIAL
- mfc
- Class
- inheritance
- Android
- Read
- Encapusulation
- stream
- Unity
- sensor
- Contour
- memory
- parameter
- Overloading
- compare
- wpf
Archives
- Today
- Total
목록fflush (1)
폴크(FOLC)
C 파일 연동
# 파일 종류 > text file : 문자열의 모임으로 바로 확인 가능 ( TxT 뷰어 이용 ) > binary file : 0, 1의 이진 형식으로 바로 확인 불가능 ( 별도 뷰어 필요 ) # 파일은 buffer (임시 메모리 공간)를 통해서 접근 > fully buffered ( 파일 연동 ) : 버퍼에 데이터를 더 이상 담지 못할때 보내는 방식 > line buffered ( 키보드 연동 ) : 버퍼에 데이터를 담고 개행 문자(\n) 가 담겼을때 보내는 방식 > buffer clear : fflush 명령어를 이용해서 버퍼 내용 삭제 - int fflush(FILE *stream); - 출력 스트림과 연결, NULL 포인터를 연결하면 내용을 삭제 - 정상 : 0, 실패 : EOF # 파일 연동 >..
교육 관련/C
2022. 1. 24. 12:35