A “Hello World!” is a simple program that outputs Hello, World! on the screen. In this example, we create simple program that prints “Hello World!” message.
Your first C++ program. It prints hello world.
#include<iostream>
using namespace std;
int main(){
cout<<"Hello World!"<<endl;
return 0;
}
