I used MS Visual Studio .Net 2003. I want to know how to start work on C++ source file. I'm confusing with that how to select the project type. I want to test the following simple code.

Code:
#include <iostream>
using namespace std;

int main ()
{
  cout << "Hello World!";
  return 0;
}