Recent posts

[C] Numeral System

2 minute read

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 num...

[C] printf, format specifier 서식 지정자

less than 1 minute read

printf 의 f 는 formatted의 약자이며 출력에 대한 서식을 지정할 수 있음을 의미한다. 출력 서식은 “ “ 사이에 서식 지정자 내용과 함께 삽입하여 지정할 수 있다. 대표적인 서식 지정자는 아래 표와 같다.

[C] Hello World

less than 1 minute read

프로그래밍 언어를 배울때 가장 먼저 해 보는 것은 Hello World를 출력하는 것이다. 이 단계는 각 언어별 Hello World 시리즈가 있을 정도로 대표적인 학습단계이다. Hellow World 출력을 맨 먼저 소개하고 학습하는 이유는 작성한 코드가 정상적으로 동작함을 보여...

[C] printf, format specifier 서식 지정자

less than 1 minute read

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 con...

[C] Hello World

less than 1 minute read

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...