Wednesday, March 28, 2018

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

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

SOURCE CODE:

#include<iostream>
using namespace std;
int main()
{
      cout<<"hello world";
      return 0;
}

Labels:

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home