Ashish Aswal

41
reputation
2
Class AboutMe {
    public:
        string name       = "Ashish Aswal"
        string contact    = "+91-7619420271"        
        string email      = "aswal321@gmail.com"
        string profession = "Software Development"

        void myday() {
            normalday();
        }
 
    private:
        void normalday() {
            eat();
            code();
            sleep();
        }

        void eat() {
            cout << "Eat Healthy Food." << endl;
        }

        void code() {
            cout << "Writing code makes life easier." << endl;
        }

        void sleep() {
            cout << "Always take a proper nap." << endl;
        }
};