Basic Structure of C++
Basic structure of C++ program
The four basic terms uses for C++ program are as follow:
-
#include < iostream >
using namespace std;
int main()
return 0;
In the program it will be written as:
#include < iostream >
using namespace std;
int main()
{
(statement)
return 0;
}
Comments
Post a Comment