+ 15
What is the difference between C & C++?
4 Answers
+ 8
C~~~~~~~~
1.procedural language
2.no virtual functions are present in
3.polymorphism is not possible
4.operator overloading is not possible
5.top down approach is used in program design
6.no namespace feature is present
C ++ ~~~~~~~
1.non procedural ,i.e object oriented
2.the concept of virtual functions are used
3.the concept of polymorphism is used
4.operator overloading is one of the greatest feature in C++
5.bottom up approach is used in program design
6.name space feature is present in C++ for avoiding name collissions...
+ 7
C++ is an extended C language.
+ 4
C is more of procedural type of language, whereas C÷÷ supports OOP concepts along with procedural methods. List of differences in both languages is fairly long