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.
0 Comments