Define Structure of a Program



Structure of a Program



Probably the best way to start learning a programming language is by writing a program. Therefore, here is our first program:

Best C++ Books




Input

// my first program in C++
#include
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}

Output


Hello World!


The first panel shows the source code for our first program.

Post a Comment

0 Comments