가상 함수를 갖고 있는 클래스의 바인딩과 사이즈 예상 문제 virtual을 이용한 오버라이딩과 학부 시스템 프로그래밍 수업때 배운 바이트 패딩 복습 #include using namespace std; class BASE { public: BASE() { cout 공부/C++ Quiz 2022.08.26
geeksforgeeks Output of C++ Program | Set 2 Predict the output of below C++ programs. Question 1 #include using namespace std; class A { public: A(int ii = 0) : i(ii) {} void show() { cout 공부/C++ Quiz 2021.07.07
geeksforgeeks Output of C++ Program | Set 1 Predict the output of below C++ programs. Question 1 // Assume that integers take 4 bytes. #include using namespace std; class Test { static int i; int j; }; int Test::i; int main() { cout 공부/C++ Quiz 2021.07.07