Directives
. Directives start with # symbol. Basically, there are four CPP Preprocessor Directives in compiler.
System in-built header files
: Built-in header files are given within angular braces <>.
Eg: #include<iostream>.User-defined Header Files
: They are represented within double qoutes " " and are given by the user.
Eg: #include"splessons".#define
is a macro, denotes the constant values and they can be of any data types.
Eg: #define letter 'A'