Posts
All the articles I've posted.
-
[C] 문자열
ASCII는 글자들의 코드 배정표라고 생각하면 쉽게 이해할 수 있다. 각각의 글자들은 숫자 값이 할당되어 있으며, 1B 8 bit 메모리를 사용한다. 이를 16진수로 표현하면 글자 1의 경우 0x31 과 같이 대응할 수 있다. ASCII 코드는 영문,...
-
[C] 기수법
C언어에서 사용하는 대표적인 Data type을 소개하기 이전에 살펴볼 것은 기수법이다. 기수법은 수를 표현하는 방법으로 사람이 일반적으로 실생활속에서 사용하는 10진수외에도 2진수, 8진수, 16진수 등이 있다. 2진수은 0과 1만을 사용하여 수를 ...
-
[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 HelloWorl...
-
[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 for...
-
[C] Hello World
프로그래밍 언어를 배울때 가장 먼저 해 보는 것은 Hello World를 출력하는 것이다. 이 단계는 각 언어별 Hello World 시리즈가 있을 정도로 대표적인 학습단계이다. Hellow World 출력을 맨 먼저 소개하고 학습하는 이유는 작성한 ...