If a function has to be called only by using other member functions of the class, what should be the access specifier used for that function?
If a function has to be called only by using other member functions of the class, what should be the access specifier used for that function? Correct Answer Private
The function should be made private. In this way, the function will be available to be called only from the class member functions. Hence the function will be secure from the outside world.