What is pure virtual function?
2962
16-Oct-2010
Updated on 14-Sep-2020
Anonymous User
10-Nov-2010In inheritance if the base class contains a virtual function equating to zero, it is known also as do-nothing function & that base class is called as abstract base class as there are no instances or objects can be created by this base class. And this pure virtual can be filled with the codes in successiv derived classes accordin to the user requirements.
The Syntax of the pure virtual function is
Uttam Misra
18-Oct-2010