THE BODY OF C++ PROGRAM


THE BODY OF C++ PROGRAM;


#include <iostream>
using namespace std;
int main ( )
{

return 0;
}

in c++ program every statement end is with semicolon ;
; is used to terminate(end) the statement.
# is called preprocessor directives

iostream is called header file.

in c++ using and namespace are reserved words

return 0 is code and it complete the programming main part and goes back compiler