Category:C++: Difference between revisions

Moved description from Category:C plus plus. Doesn't look like it changed much, though.
(Wha? The C++ category is reachable now? Might need to start updating some examples to point in the right direction.)
(Moved description from Category:C plus plus. Doesn't look like it changed much, though.)
Line 1:
{{Programming Language}}
'''C++''' is named after the C language, from which it is derived. C 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.