+ 15

What is the difference between C & C++?

10th Mar 2017, 4:19 PM
BENOTMANE
BENOTMANE - avatar
3 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...
22nd May 2017, 5:37 AM
MUʜAMMED ɪʟʟYAS
MUʜAMMED ɪʟʟYAS - avatar
+ 7
C++ is an extended C language.
22nd May 2017, 8:31 PM
Piotr
Piotr - avatar
+ 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
10th Mar 2017, 4:33 PM
देवेंद्र महाजन (Devender)
देवेंद्र महाजन (Devender) - avatar