C plus plus: Difference between revisions

From Rosetta Code
Content added Content deleted
m (Added Category)
(multi-paradigm)
Line 3: Line 3:
''The correct name for this language is "C++". "C plus plus" is in use until htaccses is fixed.''
''The correct name for this language is "C++". "C plus plus" is in use until htaccses is fixed.''


C++ is named after the C language, from which it is derived. C++ extends C into becoming an [[object-oriented language]]. The ++ in C++ is some what of an inside joke, in that C++ is C with a Post Increment operator attached, thus C++ is C + 1.
C++ is named after the C language, from which it is derived. C++ extends C into becoming an [[object-oriented language]]. However, unlike other object-oriented languages, it doesn't try to force you into [[object-oriented programming]], but is a multi-paradigm language. Besides conventional procedural programming and object-oriented programming, it also supports generic programming.

The ++ in C++ is some what of an inside joke, in that C++ is C with a Post Increment operator attached, thus C++ is C + 1.


{{Programming Language}}
{{Programming Language}}

Revision as of 17:27, 27 January 2007


The correct name for this language is "C++". "C plus plus" is in use until htaccses is fixed.

C++ is named after the C language, from which it is derived. C++ extends C into becoming an object-oriented language. However, unlike other object-oriented languages, it doesn't try to force you into object-oriented programming, but is a multi-paradigm language. Besides conventional procedural programming and object-oriented programming, it also supports generic programming.

The ++ in C++ is some what of an inside joke, in that C++ is C with a Post Increment operator attached, thus C++ is C + 1.

Programming Language
This is a programming language. It may be used to instruct computers to accomplish a variety of tasks which may or may not be domain-specific.

Listed below are all of the tasks on Rosetta Code which have been solved using this programming language.