- Documentation Section
It is also known as Comment statement. Here it is
non-executive statement. It is use to tell us that which program you will going
to perform and it will increase your read ability.
The sign "//" use for
single comment and "/* Your Content*/" Use for more then one
comment
- Preprocessor Directives Or Compiler Directrives Or C++ Processor
These are the compiler preprocessor statement.
Pre-processor statement are divided into two sections. One is called Link Section And Second is Defination Section
The sign "//" use for single comment and "/* Your Content*/" Use for more then one comment
These are the compiler preprocessor statement. Pre-processor statement are divided into two sections. One is called Link Section And Second is Defination Section
- Link Section \\#include
- Defination Section \\ #define PI 3.14
We want to declare some variables in the main program as well as in the function sub program having same name. it is used for whole programe. So , we take common variable declaration above the main program is know as Global variable declaration.
Void Main() function or program is the C++ program's main structure in which we process some statement
- Local Declaration Or Local Variable Declarartion ;\\int i;
- Execuation Part Or Executable Statements; \\cout<< & cin>>