목록분류 전체보기 (155)
사자자리

VMware Workstation 설치하기 VMware Workstation Player | VMware | KR F.T.Z 이미지 파일 설치하기 https://drive.google.com/file/d/1Esc7VQhrwVd-6sYKLSjDSTx9Ub7gnKxX/view?usp=sharing 다운로드 후 압축 풀기 VMware를 통해 Red Hat Linux 열기 ftz login: root Password: hackerschool 마우스에 문제가 생긴다면 Ctrl + Alt ifconfig 입력하여 ip주소 알기 PuTTy 설치하기 Download PuTTY: latest release (0.76) (greenend.org.uk) PuTTy Configuration에서 설정하기 Session: 아까 ..

HTML - Hyper Text Markup Language - 웹페이지를 만드는 코드. ATOM - HTML 코딩을 하기 위해 사용할 에디터(editor). 다른 에디터를 사용해도 된다. - https://atom.io/ A hackable text editor for the 21st Century At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it. atom.io ATOM으로 웹페이지 만들기 1. 바..

[백준] 2557번 Hello World #include int main(void) { printf("Hello World!"); return 0; } stdio.h - STanDard Input Output library: 표준입출력 라이브러리. - 라이브러리(library): 프로그래머들이 많이 사용하는 기능을 미리 작성해놓은 것. - 헤더 파일(header file): 개발자가 쉽게 코딩을 할 수 있도록 함수나 클래스를 미리 지정해놓은 파일. #include - 헤더 파일을 포함하는 문법. #include - 입출력 라이브러리를 사용하기 위한 준비. - stdio.h 안에 정의되어 있는 입출력과 관련된 코드(printf, scanf 등)를 사용하겠다는 의미. main 함수 - 진입점 함수: 작성 순..