Writing Hello World with C++
//A program to display hello world on the screen
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!"; //Displays hello world on the screen
return 0;
}
//A program to display hello world on the screen
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!"; //Displays hello world on the screen
return 0;
}