Tag: programming
All the articles with the tag "programming".
-
[C] Four arithmetic operations 사칙연산
In order to correctly perform the four arithmetic operations in the c language, it is necessary to understand the data types, operators, and...
-
[C] 사칙연산
c언어에서의 사칙연산을 올바르게 수행하기 위해서는 자료형, 연산자, 그리고 연산 우선순위에 대한 이해가 필요하다. 자료형에 대해서는 앞선 Data TypeData Type 에서 다루었다. 사칙연산 중 나눗셈에 대해서 자료형에 따라 그 값과 연산이 달라...
-
[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 ...
-
[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] 자료형
자료형은 변수의 종류를 의미한다. 변수란 코드가 순차적으로 진행됨에 따라 값을 전달 혹은 저장하기 위한 객체를 의미한다. 특히 C언어의 경우 메모리 주소까지 접근 가능한 프로그래밍 언어이기 때문에 효율적인 코딩을 위해 데이터의 종류에 따라 적합한 타입...