How to use abstract class in C language?
Rate this page : |
[ 0 votes]
|
Abstract class is class which contain more abstract methods. Abstract method is declared only in an abstract class. Important point is abstract class cannot be instantiated, but pointers and references of Abstract class type can be created. C is not an object oriented language so abstract classes are used through cpp programming. The below code is an example for abstract class in cpp.