Difference between revisions of "CPP"

From ProgrammingExamples
Jump to: navigation, search
(General Examples)
m (Math)
Line 138: Line 138:
 
*[[CPP/Math/MinMax|Min and Max]]
 
*[[CPP/Math/MinMax|Min and Max]]
 
*[[CPP/Math/Trig|Trig functions]]
 
*[[CPP/Math/Trig|Trig functions]]
*[[CPP/Math/SumVector|Sum elements in a vector]]
+
*[[CPP/Math/SumVector|Sum elements in a vector (accumulate)]]
 
*[[CPP/Math/Pi|Mathematic constant Pi = 3.14...]]
 
*[[CPP/Math/Pi|Mathematic constant Pi = 3.14...]]
 
*[[CPP/Math/Median|Median of a vector]]
 
*[[CPP/Math/Median|Median of a vector]]

Revision as of 15:25, 17 May 2012

C++

A statically typed, free-form, multi-paradigm, compiled, general-purpose programming language. It is regarded as a "middle-level" language, as it comprises a combination of both high-level and low-level language features. It was developed by Bjarne Stroustrup starting in 1979 at Bell Labs as an enhancement to the C programming language and originally named C with Classes. It was renamed C++ in 1983. (http://en.wikipedia.org/wiki/C++)


Formatting

General Examples

I/O

Strings

Classes

Templates

Loops

STL Data Structures

Vector

Set

STL Algorithms

Debugging

C++ TR1

C++0x

Math

C-Style Programming Techniques

Utility