Home Uncategorized Write a Simple Program on printing “Hello World” and “Hello Name” where...

Write a Simple Program on printing “Hello World” and “Hello Name” where name is the input from the user

SHARE

AIM: Write  a  C++ program to print “HELLO WORLD”.

SOURCE CODE:

#include<iostream>
using namespace std;
int main()
{
   cout<<“Hello World\n”;
   cout<<“Hello EKVIJ.COM”;
   return 0;
}

OUTPUT:

Hello World
Hello EKVIJ.COM

Back to Programs.