TechoSagar: C++ Hello World

Search

Google Alert - jobs

C++ Hello World

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

 
Output:
Display "Hello World" (without quotes) on screen.
Example:
Output:
Hello World
Your code
#include<iostream>
using namespace std;
int main()
 {
char name[]="Hello World";
cout<<name;
return 0;
}

Follow us

Follow Bijendra Kumar on Facebook