Difference between revisions of "CPP"

From ProgrammingExamples
Jump to: navigation, search
(STL Data Structures)
(Boost)
Line 113: Line 113:
 
* [[CPP/Boost/ProgramOptions/MultipleArguments|Multiple command line argument parsing (ProgramOptions)]]
 
* [[CPP/Boost/ProgramOptions/MultipleArguments|Multiple command line argument parsing (ProgramOptions)]]
 
* [[CPP/Boost/ProgressBar|ProgressBar]]
 
* [[CPP/Boost/ProgressBar|ProgressBar]]
* [[CPP/Boost/Threads|Threads]] - I'm not sure if this is correct?
+
* [[CPP/Boost/Threads|Threads]]
 +
* [[CPP/Boost/Threads|ThreadCommunication]]
 
* [[CPP/Boost/Timer|Timer]]
 
* [[CPP/Boost/Timer|Timer]]
  

Revision as of 13:36, 30 November 2010

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++)


Programming Examples

I/O

Strings

Classes

Loops

STL Data Structures

STL Algorithms

Debugging

C++ TR1

C++0x

Math

C-Style Programming Techniques

Boost

Utility