Glossary coding Term Page Buffer A fixed-size array used as temporary storage for data buffer #coding#c Korean version Related Concepts ArrayIndexStringNull TerminatorStandard inputStandard output Core Idea Buffer is A fixed-size array used as temporary storage for data. It usually makes the most sense alongside Array, Index, String. Why It Matters Here Mathbong reuses this term across c posts as shared vocabulary. Posts Mentioning This Concept Show more 1+ [C Series 7] Grouping Values with Arrays and Strings Learn how arrays occupy contiguous memory, how null-terminated strings work, and how to declare, initialize, and loop over them.[C Series 12] Reading and Writing Data via Standard Input and Files Practice `scanf`, `fgets`, `fprintf`, `fopen`, and `fclose` from `stdio.h` to master console and file I/O flows.[C 시리즈 7편] 배열과 문자열로 값 묶기 연속된 메모리를 차지하는 배열과 ` `으로 끝나는 문자열을 선언·초기화·반복 처리하는 방법을 정리합니다.