C Program Structure
Every C program has 6 main sections and have essential purpose.
i. Documentation Section:  
The Documentation Section consists of a set of comment lines giving the name of the Programmer, date, and other details about the program. The documentation section helps anyone to get an overview of the program. Comments may appear anywhere within a program. Comments are ignored by compiler and are used to provide documentation to people who reads that code. Comments are be giving in C programming in two different ways:
1. Singleline Comment.
2. Multiline Comment.
// This is Single line Comment
/*
this is
multi line
comment */
The Documentation section also contains the following information.
Project Name
Author Name
Created Date
Program Description, etc.