목록홍정모의 따라하며 배우는 C++ (2)
배움 저장소
3.1 연산자 우선순위와 결합 법칙 연산자 Associativity(우선순위) - 연산자 우선순위는 다음을 참고하자 https://en.cppreference.com/w/cpp/language/operator_precedence C++ Operator Precedence - cppreference.com The following table lists the precedence and associativity of C++ operators. Operators are listed top to bottom, in descending precedence. ↑ The operand of sizeof can't be a C-style type cast: the expression sizeof (int) * p is..
0.0 - 배우다가 해보고싶거나 구현하고 싶은 코드가 있다면 바로 해보자 0.1 프로그래밍 언어란 기계어(Machine Language) - 0000 0000 0000 0001 = 1 어셈블리(Assembly Language) - CPU가 일할 수 있는 최소 기능을 지시할 수 있는 언어이다. 어셈블리로 메모리 정보를 직접 가져올 수 있다. 고수준 언어(High-Level Language) - Hardware와 가까우면 Low 멀어지면 High로 나눈다. 컴파일러 VS 인터프리터 - 컴파일러: 코드를 기계어로 번역해주어 실행파일을 만든다. - 인터프리터: 프로그램(인터프리터)가 코드를 한 줄씩 실행한다. CPU로 넘겨서 바로 작동함과 동일하다. 컴파일러 언어 인터프리터 언어 프로그램 실행 절차 컴파일러가 ..