123456789
class myclass { int member { 1 }; public: void showmember( void ) { std::cout << member; } }; /* this looks ok. I can cout it, anything wrong with this ?*/