Monday, August 8, 2011

C++ Basic Program Construction

It is a simple C++ program 
#include <iostream>
using namespace std;

int main ()
{
 
  cout << "Every age has a language of its own: ";
  
  return 0;
}
 

No comments:

Post a Comment