Tag: c
All the articles with the tag "c".
-
[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언어의 경우 메모리 주소까지 접근 가능한 프로그래밍 언어이기 때문에 효율적인 코딩을 위해 데이터의 종류에 따라 적합한 타입...
-
[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...
-
[C] scanf
scanf function also has a letter f ,formatted as printf meaning that it can specify the format. scanf function accepts input and is a standa...