155k views
24 votes
C supports multiple inheritance which allows you to compose a child class from multiple parents. Group of answer choices True False

1 Answer

10 votes
False!
C is a language that isn’t object-orientated, and therefore does not have polymorphism or inheritance.
C++, however, does.
User Vinit Divekar
by
3.4k points