I just got my hands on visual c++.net 2002. I am aware that it ships without the optimising compiler but will someone explain why that release build of
compiles to 40k and the release build of
compiles to 164k?
WR
Code:
#include <iostream.h>
int main()
{
cout << "Hello world";
return 0;
}
Code:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world";
return 0;
}
WR