how to call a member function in another member function | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how to call a member function in another member function

19th Feb 2022, 7:24 AM
Gurmeet Singh
Gurmeet Singh - avatar
1 Answer
0
just make simple call like below................ class abc{ member_func1(); member_func2(); }; abc::member_func1(){ //.......................... this->member_func2();// just make simple call //............................ }
19th Feb 2022, 7:34 AM
saurabh
saurabh - avatar