All Stories
[C] Data Structure, 자료구조
Data structure in the dictionary sense is to express, store, and organize data in order to efficiently process data. In designing a software program, selecting an appropriate data str...
In C, Dec 14, 2020[C] Structure, 구조체
Structures are mainly used when you want to collect and deal with various data types from declaring and using data types one by one. Structures are derived types created by combining ...
In C, Dec 13, 2020[C] Heap & Dynamic memory allocation 힙 & 동적 메모리 할당
In the previous post, we looked at the array form that is declared and used with a fixed size variable type. However, the static memory allocation method, which uses a certain amount ...
In C, Dec 13, 2020[C] Pointer application, 포인터 활용
The pointer concept is simple, but the use case is confusing, so let’s look at a few simple functions. The first is when you use an increment operator and a pointer together. Both *a+...
In C, Dec 12, 2020[C] Pointer, 포인터
Pointers can be understood as literally pointing to, pointing action objects. Regardless of the role of a pointer, since it is also an object, it can be defined and used as a variable...
In C, Dec 11, 2020