Suppose your program contains the following class definition…
Suppose your program contains the following class definition ( along with definitions of the member functions): class YourClass { public: YourClass( int newInfo, char moreNewInfo); YourClass( ); void doStuff( ); private: int information; char moreInformation; }; Question: Which of the following is NOT legal?