Showing posts with label Strings. Show all posts
Showing posts with label Strings. Show all posts

Hello World!

Hello World! Our first C++ program


The best way to start learning C++ is to write our first program - Hello World. We will present the basic parts of a running program.

/*
Our first C++ program: Hello World
Print "Hello World!"
*/

#include <iostream>

using namespace std;

int main(void)
{ 
 //print "Hello World!"
 cout << "Hello World!" << endl;
  
 getchar();

 return 0;

}