Cpp_study_210726

C++ STUDY - DAY 1

C++ Crash Course By Josh Lospinoso - Chapter 2 Types 파트 공부 및 예제문제를 작성했다.

  1. C++ fundamental types(primitive or built-in types) 의 종류와 사용에 대해서 공부.
    • 기본적으로 integer, floating-number, character, bool 4가지
    • printf를 통해서 출력할때, 상황에 맞는 여러가지 specifier가 있음 (%d, %f, %g, %le...)
  1. User-defined type의 종류, 초기화 및 사용법 공부.
    • enum, union, POD(plain old data)
    • struct, class with encaptulation -> access control 개념이 추가됨
    • struct 와 class의 차이, initialization, constructor 개념 공부