difference between c and c++?
Answer Posted / munish kumar
Main difference between c and c++ are:
1.) In c++, there is strict typechecking and in c, there is
no strict typechecking. So, many programes which can
compiled by c compiler cannot be compiled by c++ compiler.
2.) In c, there is only "EARLY BINDING", whereas in c++,
there are "EARLY BINDING & LATE BINDING".
3.)C++ IS HIGH LEVEL LANGUAGE BUT 'C' IS LOW LEVEL LANGUAGE.
4.)In c++,there is a new concept of "INLINE FUNCTIONS",
whereas in c, there are macros.
5.)C++ is a object oriented language but C is not OOPS.
Is This Answer Correct ? | 58 Yes | 19 No |
Post New Answer View All Answers
Explain function overloading
What is the c++ programming language used for?
Are vectors faster than arrays?
What is rvalue?
What does n mean in c++?
Which programming language's unsatisfactory performance led to the discovery of c++?
Does a derived class inherit or doesn't inherit?
Where can I run c++ program?
What is the use of bit fields in structure declaration?
What are c++ manipulators?
Why iomanip is used in c++?
Which coding certification is best?
Is there structure in c++?
Why do you use the namespace feature?
What is a volatile variable in c++?