Monday, 29 February 2016

Hellow World using c++

//This is simple programmed to print "hellow world"
 //copy and paste into your compiler to see the result..

Source code:

#include<iostream>
using namespace std;

 int main()

{
   cout << "Hello World\n";

  return 0;
}


No comments:

Post a Comment