Wednesday, May 18, 2016

Differences Between C And C++



Differences Between C And C++

C++, as the name suggests is a super set of C. As a matter of fact, C++ can run most of C while C cannot run C++ . Here are the 10 major differences between C++ & C.1. C follows the procedural programming paradigm while C++ is a multi paradigm language(procedural as well as object oriented)In case of C, importance is given to the steps or procedure of the program while C++ focuses on the data rather than the process.Also, it is sier to implement/edit the in case of C++ for the same rson.2. In case of C, the data is not secured while the data is secured(hidden) in C++.This difference is due to specific OOP ftures like Data Hiding which are not present in C
3. C is a low-level language while C++ is a middle-level language (Relatively, Plse see the discussion at the end of the post)C is regarded as a low-level language(difficult interpretation & less user friendly) while C++ has ftures of both low-level(concentration on whats going on in the machine hardware) & high-level languages(concentration on the program itself) & hence is regarded as a middle-level language.
4. C uses the top-down approach while C++ uses the bottom-up approachIn case of C, the program is formulated step by step, ch step is processed into detail while in C++, the base elements are first formulated which then are linked together to give rise to larger systems.
5. C is function-driven while C++ is object-driven.Functions are the building blocks of a C program while objects are building blocks of a C++ program.6. C++ supports function overloading while C does not.Overloading mns two functions having the same name in the same program. This can be done only in C++ with the help of Polymorphism(an OOP fture)7. We can use functions inside structures in C++ but not in C.In case of C++, functions can be used inside a structure while structures cannot contain functions in C.
8. The NAMESPACE fture in C++ is absent in case of C.C++ uses NAMESPACE which avoid name collisions. For instance, two students enrolled in the same university cannot have the same roll while two students in different universities might have the same roll . The universities are two different namespace & hence contain the same roll (identifier) but the same university(one namespace) cannot have two students with the same roll (identifier)9. The standard input & output functions differ in the two languages.C uses scanf & printf while C++ uses cin>> & cout<< as their respective input & output functions.10. C++ allows the use of reference variables while C does not.Reference variables allow two variable names to point to the same memory loion. We cannot use these variables in C programming.11. C++ supports Exception Handling while C does not.C does not support it "formally" but it can always be implemented by other methods. Though you don't have the framework to throw & ch exceptions as in C++.-->

No comments:

Post a Comment