All Stories
[C] ASCII, String 문자열
ASCII is easy to understand if you think of it as a code assignment table for letters. Each letter is assigned a numeric value and uses 1B (8 bit) memory. If this is expressed in hexa...
In C, Dec 03, 2020[C] Data Type 자료형
Data type means the type of variables. Variables refer to an object to transfer or store a value as the code proceeds. In particular, since C is a programming language that can access...
In C, Dec 03, 2020[C] Numeral System 기수법
Before introducing the representative data types used in the C language, one thing to look at is numeral system. Numeral system is a method of expressing numbers. In addition to the d...
In C, Dec 03, 2020[C] printf, format specifier 서식 지정자
The letter f in printf stands for formatted, meaning that you can format the output. The output format can be specified by inserting the format specifier content between “ “. Represen...
In C, Dec 02, 2020[C] Hello World
The first thing you do learning a programming language is to print Hello World. It is a representative learning stage so ther is a HelloWorld series for each programming language. The...
In C, Dec 02, 2020