정적 멤버 데이터 (static member data) class Car{private:int color;public:int cnt = 0;Car() { ++cnt; }~Car() { --cnt; }}; int main(){Car c1, c2; cout