xxxxxxxxxx
#include <iostream>
int main(int argc, char** argv) {
std::cout << "Hello World \n";
return 0;
}
xxxxxxxxxx
// A hello world program in C++
#include<iostream>
using namespace std;
int main()
{
cout << "Hello World!";
return 0;
}
xxxxxxxxxx
#include <iostream>
int main(int argc, char** argv) {
std::cout << "Hello World \n";
}