Display the most famous phrase of beginning any programming language, "Hello World" (without Quotes).
Input:
You do not need to take any input for this problem
You do not need to take any input for this problem
Output:
Display "Hello World" (without quotes) on screen.
Display "Hello World" (without quotes) on screen.
Example:
Output:
Hello World
Output:
Hello World
Your code
#include<iostream>
using namespace std;
int main()
{
char name[]="Hello World";
cout<<name;
return 0;
}