Saved Bookmarks
| 1. |
What is pure virtual function |
|
Answer» A pure virtual function is a function that must be overridden in a DERIVED CLASS and need not be defined. A virtual function is DECLARED to be “pure” USING the curious =0 syntax. |
|