Programming 3

파이썬이란 / What is Python

파이썬이란? What is Python? 파이썬은 1990년 암스테르담의 귀도 반 로섬이 개발한 인터프리터 언어이다. Python is an interpreter language developed by Guido van Rossum in Amsterdam in 1990. 인터프리터 언어란 컴파일러를 거치지 않고 소스 코드를 바로바로 실행하는 프로그래밍 언어이다. The interpreter language is a programming language that directly executes source code without going through a compiler. 컴파일러의 과정을 거쳐 실행되는 대표적인 언어에는 C 언어가 있다. C language is a representative langu..

Programming/Python 2021.01.15

Linux C 프로그래밍 기초 ① / Linux C Programming basics ①

본 프로그래밍은 리눅스 터미널 내에서 vi로 작성되고 실행된다. This programming is written and executed in vi in a Linux terminal. C 프로그래밍 첫 기초를 예제로 시작하려 한다.Let's start with the basics of C programming as an example. 예제를 살펴보기 전에 먼저 디렉토리와 파일을 먼저 정리해보도록 하겠다.Before looking at the example, let's first organize the directories and files. 나중에 복습을 할 때 디렉토리를 정리해놔야 찾기 쉽다.It's a good idea to organize our directories for future revi..

Programming/C 2020.07.15

C 언어란 / What is C language

본 포스팅은 필자의 개인적인 의견이 들어가 있다. This post contains my personal opinion. C 언어를 배우기에 앞서 C 언어란 무엇인가를 먼저 알아야 한다고 생각한다. Before I learn C language, I think we should know what C language is. C 언어가 세상에 나오기 전 1969년 켄 톰슨이 'B'라는 프로그래밍 언어를 만들었고 1972년 벨 연구소의 데니스 리치가 B 언어의 특징을 물려받은 'C' 언어를 만들었다. Before the C language came out, Kenneth Lane Thompson created the programming language'B' in 1969, and in 1972, Dennis..

Programming/C 2020.07.07