Download C++ Compiler here : bakhtshirensoft.blogspot.my/2015/11/dev-c-511.html
the code :
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}
The Output

#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}
