Tell me how to create a pure virtual function?

Submitted by: Muhammad
A function is made as pure virtual function by the using a specific signature, " = 0" appended to the function declaration as given below,
class SymmetricShape {
public:
// draw() is a pure virtual function.
virtual void draw() = 0;
};
Submitted by: Muhammad

Read Online C++ Programmer Job Interview Questions And Answers