madisonsan6271 madisonsan6271 19-12-2022 Engineering contestada Given the declaration class myClass { public: void print(); //Output the value of x; MyClass(); private: int x; }; myClass myObject; The following statement is legal. myObject.x = 10; a. True b. False