Recent posts

[C] scanf

1 minute read

scanf function also has a letter f ,formatted as printf meaning that it can specify the format. scanf function accepts input and is a standard library functi...

[C] scanf 함수

less than 1 minute read

scanf 함수는 printf 함수와 동일하게 f, formatted 즉 서식을 지정할 수 있다. scanf 함수는 입력을 받아들이는 함수이며, printf 와 동일하게 표준 라이브러리 함수이기 때문에 사용시 #include <stdio.h> 를 서두에 선언해야 한다. ...

[C] ASCII, String 문자열

1 minute read

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 bit) memory. If...

[C] 자료형

1 minute read

자료형은 변수의 종류를 의미한다. 변수란 코드가 순차적으로 진행됨에 따라 값을 전달 혹은 저장하기 위한 객체를 의미한다. 특히 C언어의 경우 메모리 주소까지 접근 가능한 프로그래밍 언어이기 때문에 효율적인 코딩을 위해 데이터의 종류에 따라 적합한 타입을 설정하는 것이 중요하다. C...

[C] Data Type 자료형

1 minute read

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 is a programmin...