Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Header files 1

Status
Not open for further replies.

qweas

Programmer
Feb 12, 2002
42
GB
Does anyone know all of the C++ header files, if so please say what they are and what its function is.
 
There are far too many to list. I'd recommend looking at the MSDN online library, since most header files relate to specific categories of fuctionality:

The "Runtime" library deals with the standard C functions:

The "Class" library deals with MFC (Microsoft Foundation Class) library, a library that makes programming with Windows easier:

The "iostream" library deals with the i/o functions that were added to the standard C library more recently:

Hope this helps you get started. ;-)
 
where would be a good place to download .h files? I'm trying to compile a C program, but I'm missing about half of the .h files. Help!
 
You can find .h files lots of places, but they more than likely won't be much help to you if you don't have the associated object code. Exactly which headers are you missing and why? What compiler do you have? If you're missing headers with names like <cassert> or <cstdio>, you might just need to include them by their old names (<assert.h> or <stdio.h>) because your compiler doesn't support the &quot;new&quot; header names.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top