Jump to content

Standard header

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 143.166.226.17 (talk) at 15:02, 4 February 2004. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

A source code file, in C and C++ programming, that contains common definitions and data structures that all programs may use as required. Also called "include files," header files use the #include statement to incorporate them with the program, header files use a .h extension.

Unlike C++, C# is written inline so it does not require header files.

The standard C++ header files:

<algorithm> <bitset> <deque> <exception> <fstream> <functional> <iomanip> <ios> <iosfwd> <iostream> <istream> <iterator> <limits> <list> <locale> <map> <memory> <new> <numeric> <ostream> <queue> <set> <sstream> <stack> <stdexcept> <streambuf> <string> <typeinfo> <utility> <valarray> <vector>


External Links


cplusplus.com