Give example of a pure virtual function in C++?

Submitted by: Muhammad
class SomeClass {
public:
virtual void pure_virtual() = 0; // a pure virtual function
// note that there is no function body
};
Submitted by: Muhammad

Read Online C++ Virtual Functions Job Interview Questions And Answers