Starting Of C++

 The most important and starting for writting program:

Is "Boller Plate" ;

#include<iostream>
using namespace std;

then ;

int main()
{
with curly {} braces....

and it is body of our program we write whole program in it.....

return 0;

at the end but it is not necessary.....but we prefer to write...

}





 

Comments