Which among function will be overridden from the function defined in derived class below:
class A { int i; void show() { cout<<i; } void print() { cout <<i; } }; class B { int j; void show() { cout<<j; } };
(a).show()
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
(a).show()
need an explanation for this answer? contact us directly to get an explanation for this answer