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