0
declaration of function prototype in other local specifier
what will happen if a function prototype is being declared in private or protected does it make any difference ? if yes then what.
1 Odpowiedź
+ 1
Yes, private is only for the class it self. Protected can be used by classes that inherit from the class with the protected function or data.