Latest C++ Aptitude Question SOLUTION: What is wrong with this class declaration? class something { char *str; public: something(){ st = new char[10]; } ~something() { delete str; } };