+ 1

What is the difference between C and C++?

7th Jan 2017, 3:04 PM
Ankit Pratap Singh
Ankit Pratap Singh - avatar
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...
7th Jan 2017, 5:36 PM
ifl
ifl - avatar
0
C language is a procedural language and C++ is a object oriented language
7th Jan 2017, 3:59 PM
Shubham Kothekar
Shubham Kothekar - avatar
- 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.
7th Jan 2017, 3:46 PM
Wazir