write a simple c++ program to print hello world code example
Example 1: c++ code to print hello world
#include<iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
return 0;
}
Example 2: how to say hello world in c++
cout<<"Hello, World!"<<endl;