Breaking Change: I/O stream changes

Original Code:

#include <iostream.h>

int main(int argc, char *argv[]) {
cout<<"Hello World\n";
}

Error VC2005 issues:

sample.cpp(1) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory

Code after applying the fix:

#include <iostream>
using namespace std; //important to be able to use cout

int main(int argc, char *argv[]) {
cout<<"Hello World\n";
}

Thanks,
  Ayman Shoukry