difference between c and c++?
Answer Posted / arpit gupta
1.C follows procedural programming language while c++ follows multi paradigm language(procedural as well as object oriented)
2.in c data is not secured,but in c++ data is secured(hidden)like data hiding which is not in c.
3.c is a low level language & c++ is a high level language
4.c is a top down approach but c++ is a bottom up approach
5.We can use functions inside structures in C++ but not in C.
6.C is function-driven while C++ is object-driven
7.C++ supports function overloading while C does not
8.C++ allows the use of reference variables while C does not
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of namespace std in C++?
Why is c++ still used?
Can I create my own functions in c++?
Describe Trees using C++ with an example.
What is the difference between public and private data members?
What is near, far and huge pointers? How many bytes are occupied by them?
Does dev c++ support c++ 11?
What is class definition in c++ ?
Is it possible for the objects to read and write themselves?
What is pair in c++?
What is the best c++ compiler?
List the special characteristics of constructor.
What is the full form of dos?
Which of the following is evaluated first: a) && b) || c) !
Differences between private, protected and public and give examples.