Source:Hello World C++
| Description | Hello World ! | |||
|---|---|---|---|---|
| Author(s) | n/a | |||
| Version | n/a | |||
| Language(s) | C++ | |||
| Compiler | Most C++ compilers | |||
| Latest Release | 06-16-09 | |||
| OS | Windows OS | |||
| Discussion Thread | [No thread in Forums] | |||
| ||||
Contents |
The simple "Hello, world!" program in C++.
#include <iostream>int main()
{std::cout << "Hello, world!\n";
}#include <iostream>using namespace std;
int main()
{cout << "Hello, world!\n";
}