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
What is abstraction oop?
Why is abstraction used?
what is graphics
What is difference between inheritance and polymorphism?
What is the main purpose of inheritance law?
when to use 'mutable' keyword and when to use 'const cast' in c++
What is abstract class in oop?
What is inheritance and how many types of inheritance?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
State what is encapsulation and friend function?
What is inheritance in oop?
What is overloading in oops?
How oops is better than procedural?
What is data binding in oops?
What is polymorphism and types?