what is the main difference between c and c++?
Answer Posted / p govind rao
1) C is a structural Language, but C++ is a object oriented
language.
2)C employs top down approach, but c++ employees bottom up
approach.
3) c doesn't support operator overloading but c++ support
operator overloading.
4) In C memory allocation is done with malloc statement
whereas in C++ it is done through new keyword.
5) Also memory is deal located in C using free statement
while in C++ deal location takes place through delete.
6) c is does not provide default argument but c++ is
provide default argument.
7) c is cant support the inheritance and polymorphism etc
but c++ support the inheritance and polymorphism etc.
8) c is low level language while c++ is sn high level
language.
9)C can not support all the feature of the C++. while c++
support all the features of C.
10. C variables are DECLARED in declaration section.C++
variables are DECLARED any where in the program.
11) C does NOT have NAMESPACE for avoid name collisions.
c++ has NAMESPACE feature.
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
Why do while loop is used?
What do you mean by Encapsulation?
write a program to find 2 power of a 5digit number with out using big int and exponent ?
What are two types of polymorphism?
What are the 3 principles of oop?
What is a function in oop?
What is class encapsulation?
What is multilevel inheritance explain with example?
Are polymorphisms mutations?
What is a class in oop?
which feature are not hold visual basic of oop?
can inline function declare in private part of class?
Can bst contain duplicates?
What are the two different types of polymorphism?
What makes a language oop?