what is the main difference between c and c++?
Answer Posted / palak
C++ is an extension of C language. This means that you can
not only use the new features introduced with C++ but can
also use the power and efficiency of C language. C and C++
are no more language for writing compilers and other
languages, these general purpose languages are used
worldwide in every field.
Differences between c and c++.
The main difference between C and C++ is that C++ is object
oriented while C is function or procedure oriented. Object
oriented programming paradigm is focused on writing programs
that are more readable and maintainable. It also helps the
reuse of code by packaging a group of similar objects or
using the concept of component programming model. It helps
thinking in a logical way by using the concept of real world
concepts of objects, inheritance and polymorphism. It should
be noted that there are also some drawbacks of such
features. For example using polymorphism in a program can
slow down the performance of that program.
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
Can enum be null?
What is difference between inheritance and polymorphism?
Why is destructor used?
What is use of overloading?
Can you explain polymorphism?
What is polymorphism in oops with example?
what is the drawback of classical methods in oops?
What are the benefits of oop?
What is polymorphism oop?
What are different oops concepts?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
What is protected in oop?
What is object-oriented programming? Webopedia definition
What are the important components of cohesion?
What is multilevel inheritance?