DEV Community

C++
C++

Posted on

Hello world

include

using namespace std;

// a C++ program to show Hello world on console

int main()
{
cout << "Hello World" << endl;
return 0;
}

Top comments (0)