As a programming student, the best way to start learning a programming language is by writing a program.
Now, here is our first for this course:
Syntax:
#include<iostream.h>
int main()
{
.........;
return 0;
}
Example:
#include<iostream.h>
//main() is where program execution begins.
int main()
{
cout << "This is my first C++ Program!";
return 0;
}