+ 1
What is the difference between C and C++?
3 Answers
+ 1
c++ introduces all the object oriented concepts: classes, inheritance... also new/delete ( rather than malloc/free) for memory management, and operator overloading, exception handling and namespace...
0
C language is a procedural language and C++ is a object oriented language
- 1
The major difference between C and C++ is that C is a procedural programming language and does not support classes and objects, while C++ is a combination of both procedural and object oriented programming language; therefore C++ can be called a hybrid language.



