Friday, 29 January 2016

What are Header Files?

When a C/C++ program is written, you write #include <stdio.h> or #include <iostream> at the top of program but have you ever wondered what are they. They are the Header Files, the first thing that you have to do in program is to understand the concept of these guys and you need to include these header files in the very first line of your program which appears like this: #include <header file>
Green line is a Header File