C++は静的タイプ、コンパイル式、汎用的、大文字と小文字に敏感な、不規則なプログラミング言語である.
注:静的タイプのプログラミング言語を使用すると、実行時にタイプチェックを実行するのではなく、コンパイル時にタイプチェックを実行します.
#include
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
cout<<"This is a C++ program!";
return 0;
}