C++: Difference between revisions
Jump to navigation
Jump to search
imported>Dhawal Sehgal No edit summary |
imported>Alexander Wiebel (removed html tags) |
||
Line 2: | Line 2: | ||
{{dambigbox|text=For other uses, see [[C (disambiguation)]].}} | {{dambigbox|text=For other uses, see [[C (disambiguation)]].}} | ||
'''C++''' is a [[Programming language|programming language]] created by [[Bjarne Stroustrup]]. Originally, it extended the [[C programming language]], primarily by adding [[Object oriented programming]] capabilities to it. However, since the release of the [[C99]] standard, C++ is no longer a strict superset of C. The language facilitates [[generic programming]] (also known as ''parameterization of types'') through the use of [[templates]] (known in some languages as ''generics''). | '''C++''' is a [[Programming language|programming language]] created by [[Bjarne Stroustrup]]. Originally, it extended the [[C programming language]], primarily by adding [[Object oriented programming]] capabilities to it. However, since the release of the [[C99]] standard, C++ is no longer a strict superset of C. The language facilitates [[generic programming]] (also known as ''parameterization of types'') through the use of [[templates]] (known in some languages as ''generics''). | ||
Data abstraction, Data encapsulation, Polymorphism and Inheritance are the corner stones of C++ that make it a powerful programming tool. | Data abstraction, Data encapsulation, Polymorphism and Inheritance are the corner stones of C++ that make it a powerful programming tool. | ||
It follows a bottom up approach in compilation as compared to the top down approach of C. | It follows a bottom up approach in compilation as compared to the top down approach of C. |
Revision as of 07:38, 12 August 2008
For other uses, see C (disambiguation).
C++ is a programming language created by Bjarne Stroustrup. Originally, it extended the C programming language, primarily by adding Object oriented programming capabilities to it. However, since the release of the C99 standard, C++ is no longer a strict superset of C. The language facilitates generic programming (also known as parameterization of types) through the use of templates (known in some languages as generics).
Data abstraction, Data encapsulation, Polymorphism and Inheritance are the corner stones of C++ that make it a powerful programming tool. It follows a bottom up approach in compilation as compared to the top down approach of C.