Saturday, September 18, 2010

C++ Basic Code 002

//this is a simple c++ program.
//call this file samle.cpp


#include
using namespace std;

//A c++ program begins at main().
int main()
{
cout<<"C++ is power programming";
return 0;
}

No comments:

Post a Comment