Home / Object Oriented Programming / Mention drawbacks of C programming. How can the drawbacks be resolved by OOP paradigm?

Mention drawbacks of C programming. How can the drawbacks be resolved by OOP paradigm?

Drawbacks of C programming

  • lack of encapsulation
  • some code repetation
  • lack of information hiding
  • not much reusability of code
  • absent inheritance

It can be solve by using the concept of OOP

  • class
  • object
  • abstraction
  • encapsulation
  • data hiding
  • inheritance
  • polymorphism.