동적할당과 생성자 및 소멸자
명함 정보를 지닐 수 있는 클래스를 정의해 보자. 클래스 이름은 NameCard이고 이름, 전화번호, 주소,직급 정보를 저장할 수 있어야 한다. 생성자 내에서 동적 할당하고, 소멸자에서 할당받은 메모리를 해제하는 형식으로 구현하라. #include "stdafx.h" using std::cout; using std::endl; using std::cin;class NameCard{ private: char* name; char* phone; char* address; char* pos;public: NameCard(char* _name, char* _phone, char* _address, char* _pos){ name=new char[strlen(_name)+1]; //생각이 나지 않았던 부분. ne..