#include<iostream> class test { int x; public: void funs(void) { tell(); } void tell(void) { std::cout << "hello fun in fun" << '\n'; } }; test t; int main(int argc, char const *argv[]) { t.funs(); return 0; }
© 2019 CODE WITH SHARAD | Privacy Policy
Comments