In DEV-C++, when I compile a simple hello world program, I've noticed, the size of the .exe compiled in DEV-C++ compared to the same code compiled in VC++ 9 Express is very different.

Code:
Code:
#include <iostream>
using namespace std;
int main ()
{
  cout << "Hello World!" << endl;
  cout << "Press ENTER to continue..." << endl; 
  cin.get();
  return 0;
}
EXE Compiled in DEV-C++ - 463 kb
EXE Compiled in VC++ 9 XPress - 39 kb

What?

--------------------------------------------------------------------------------------------

Also, can anyone tell me how to add an icon and file tags (Like description, copyright, ect.) in VC++ like you could in Dev-C++ through project options?

Thanks everyone.