Example & Tutorial understanding programming in easy ways.

What is pure virtual function in C++ ?

Pure virtual function -

- The pure virtual function is a virtual function which does not contain any definition. 

- The normal function is preceded with a keyword virtual. The pure virtual function ends with 0.

Read More →