Suite101
Post this Blog to facebook Add this Blog to del.icio.us! Digg this Blog furl this Blog Add this Blog to Reddit Add this Blog to Technorati Add this Blog to Newsvine Add this Blog to Windows Live Add this Blog to Yahoo Add this Blog to StumbleUpon Add this Blog to BlinkLists Add this Blog to Spurl Add this Blog to Google Add this Blog to Ask Add this Blog to Squidoo

Jun 9, 2006

C Header Files

Continuing the beginners C programming course, this week we look at the C header file.

Breaking up some programming task into individual source code files is standard practice. One file simply cannot contain manageable code to perform anything but the simplest of functions.

The C header file interface allows us to specify what these functions look like, so that the compiler can compile each file individually. It also provides interfaces to third party and standard libraries.

For more information on how to use header files in the c programming language, please take a look at the C tutorial articleC Hedaer Files.