기술 성공, 실패 기록소

const, constexpr, and symbolic constants 본문

프로그래밍언어/C++

const, constexpr, and symbolic constants

sunlab 2020. 11. 5. 19:44
728x90

boycoding.tistory.com/156?category=1007180

 

C++ 02.10 - 상수 (const, constexpr, and symbolic constants)

02.10 - 상수 (const, constexpr, and symbolic constants) 상수 (constant) 상수란 그 값이 변하지 않는 불변 값이다. 지금까지 본 변수들은 모두 언제든지 값이 변할 수 있었다. int x { 4 }; // initialize x w..

boycoding.tistory.com

 

'프로그래밍언어 > C++' 카테고리의 다른 글

learning tf  (0) 2020.11.06
클래스와 상속  (0) 2020.11.06
int main(int argc, char **argv)  (0) 2020.11.05
이중포인터 배열  (0) 2020.11.05
char**  (0) 2020.11.05