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 |
29 | 30 | 31 |
Tags
- classification problem
- 형변환
- compile time constants
- coursera
- 홍정모님
- 나동빈님
- 연산자
- #endif
- 코딩테스트
- 프로그래밍
- sizeof()
- Runtime constants
- standford University
- C++
- Andrew Ng
- algorithm
- 이코테
- regression problem
- 단항연산자
- Machine Learning
- 본즈앤올
- const
- 기계학습 기초
- Greedy
- decimal
- CLion
- #define
- 학습 알고리즘
- 코드블럭 오류
- 기계학습
Archives
- Today
- Total
목록프로그래밍 (2)
wellcome_공부일기
01.08. C++ | 프로그래밍에서 지켜야 할 기본적 서식(Formatting)
1. 기본적인 서식(formatting) 맞추기 2. 선언(declaration)과 정의(definition)의 분리 3. 변수 선언(variables declaration)은 어디에? 기본적인 서식(formatting) 맞추기 기본적인 서식(formatting)은 규칙은 아니지만 프로그래머 사이에 아래 서식처럼 맞춘다면 효율적으로 코드 리뷰를 할 수 있습니다. #include using namespace std; int main() { //1. int x = 52; int my_love = 2; int Boys$Girls = 728; //2. cout
프로그래밍/C++
2020. 4. 25. 01:14
01.01. C++ | 프로그램의 전체적인 구조
1. 프로그래밍(Programming) 2. 프로그램(Program) 3. 명령문(statement)과 수식(expression) 4. 리터럴(literal)과 변수(variables) 그리고 전처리기(preprocessor directive) 프로그래밍(Programming)이란? - 프로그램을 실행시킨다. - 윈도우즈(Windows), Mac os, Linux 등의 운영체제(operating system)에게 compile이 된 코드를 실행해달라고 요청하는 것 - 이때, 운영체제(operating system)는 자신이 가진 cpu와 메모리를 사용하여 프로그래밍을 수행 프로그램(Program)이란? - 프로그램이란 함수이다. - 함수는 입력값(input)에 따른 결과값(output)이..
프로그래밍/C++
2020. 4. 19. 03:16