Radical Developers welcomes all the visitors to be a member of the team. Come join us. Its all about open-source concept. All Programs are written and tested in MacOS X, Unix, Linux and may not match with the outputs of Turbo C++ in Windows

Saturday, January 29, 2011

New header files included in ANSI C++.


Header File
Contents and Purpose
<utility>
Contains classes and functions that are used by many standard library header files.
<vector>, <list>, <deque>, <queue>, <set>, <map>, <stack>, <bitset>
The header files contain classes that implement the standard library containers. Containers store data during a program's execution.
<functional>
Contains classes and functions used by algorithm of the standard library.
<memory>
Contains classes and function used by the library to allocate memory to the standard library contains.
<iterator>
Contains classes for manipulating data in the standard library containers.
<algorithm>
Contains functions for manipulating data in the standard library containers.
<exception>, <stdexcept>
This header files contains classes that are used for exception handling.
<string>
Contains the definitions of class string from the standard library.
<sstream>
Contains function prototypes for functions that perform input from string in memory and output to string in memory.
<locale>
Contains classes and functions normally used by stream processing to process data in the natural form for different languages (e.g., monetary formats, sorting strings, character presentation.)
<limits>
Contains a class for defining the numerical data type limits on each computer platform.
<typeinfo>
Contains classes for run-time type identification (determining data types at execution time).

No comments:

Post a Comment