Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- react
- 매일메일
- createSlice
- C++
- 이코테
- Get
- JavaScript
- java
- 프로그래머스
- 알고리즘
- 자바
- maeil-mail
- json-server
- SW
- 리액트
- 항해플러스
- axios
- 코딩테스트합격자되기
- react-router
- Algorithm
- sw expert academy
- redux
- Python
- useDispatch
- 테코테코
- 항해99
- programmers
- react-redux
- redux-toolkit
- redux-saga
Archives
- Today
- Total
Binary Journey
[C++] Dev-C++ setting & Hello World 본문
반응형
요즘 듣고 있는 강의다.
회차마다 강의일지를 쓰려한다.
1강. 알고리즘의 개요와 실습환경 구축
https://sourceforge.net/projects/orwelldevcpp/
Dev-C++ 를 위 사이트에서 다운받아 실행한다.
별 다른 설정없이 권장되어 있는 대로만 확인을 누르고 설치하면 된다.
Dev-C++은 컴파일할 때마다 소스페이지를 저장해야 한다.
세팅이 끝나면 hello world 를 출력해본다.
#include <stdio.h>
int main(void) {
printf("Hello World!");
return 0;
}
반응형
'Algorithm > 알고리즘 스터디(2021.07)' 카테고리의 다른 글
[Algorithm] 백준 sort 문제풀이 (0) | 2021.07.29 |
---|---|
[Algorithm] Quick Sort(퀵 정렬) (0) | 2021.07.29 |
[Algorithm] Insertion Sort(삽입 정렬) (0) | 2021.07.20 |
[Algorithm] Bubble Sort(버블 정렬) (0) | 2021.07.20 |
[Algorithm] Selection Sort (선택정렬) (0) | 2021.07.20 |