Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Visual c++.net

Status
Not open for further replies.

tokra

Technical User
Feb 20, 2003
45
GB
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
Code:
#include <iostream.h>

int main()
{
	cout << &quot;Hello world&quot;;
	return 0;
}
compiles to 40k and the release build of
Code:
#include <iostream>
using namespace std;
int main()
{
	cout << &quot;Hello world&quot;;
	return 0;
}
compiles to 164k?
WR
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top