Preprocessor Directive
Lines that begin with a # are called preprocessor directives
The #include <stdio.h> directive causes the preprocessor to include a copy of the standard input/output header file stdio.h at this point in the code.
This header file was included because it contains information about the printf ( ) function that’s used in this program.