class ghi { public: float multiply(); private: float x, y; }; float ghi::multiply() { float z = x*y; return z; }