difference between c and c++?
Answer Posted / radhika
1. C is the procedure oriented programming language.
C++ is the object oriented programming language.
2. C gives the important on the procedure insted of data.
C++ gives the important on the data.
3. C the data can pass through the fuction to function.
C++ the data is hide in the fuction and the data is stolen
through the external function.
4. C is the low level language.
c++ is the high level language.
5. C doesn't have the extra advantages to hide the functions like C++
C++ having extra benfits data can hide in the function
(encapsulation),polymorphism,templates,file
handling,inheritance.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do the names of parameters have to agree in the prototype, definition, and call to the function?
How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
What is an overflow error?
Why is "using namespace std;" considered bad practice?
What is function prototyping?
Write about the local class and mention its use?
What is polymorphism & list its types in c++?
What character terminates all character array strings a) b) . c) END
Can a function take variable length arguments, if yes, how?
Declare a class vehicle and make it an abstract data type.
How compile and run c++ program in turbo c++?
Why was c++ made?
What does n mean in c++?
What are structures and unions?
Which c++ operator cannot overload?