Wednesday, September 14, 2011

C++ Programming

C++ is very simple and basic language in computer programming. Simplest program in C++ is


#include <iostream>
using namespace std;
int main ()
{
  cout << "Hello World!";
  return 0;
}
cout is the most powerful statement in c++ Programming

No comments:

Post a Comment