In this topic i will be telling the basic elements of c++ basic programm
In this we have
1.Preprosessive Directive - It is used to add a library to the code and used to instruct the compiler to add the library before compiling the code .
2.main Function - All c++ codes start with this main function and it executes the code when started
3.**Expressions statements ** - All the expressions which end with a semicolon are called expression statements
4.**Declaration statements **- All the statements that declare something in the code are called declaration statements
5.**Return statement ** - it is used to return objects.
