X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f Message-ID: <003001c1ba9d$d390d280$bbd5aec6@default> From: "Josh Haglund" To: References: Subject: Re: Hello, World! == 753 KB Date: Thu, 21 Feb 2002 00:05:54 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Reply-To: djgpp AT delorie DOT com no optimizations (-O3 -O2, -O1, -Os, etc...) or strip it... -s ----- Original Message ----- From: "Fausto Arinos de A. Barbuto" Newsgroups: comp.os.msdos.djgpp To: Sent: Thursday, February 21, 2002 12:36 AM Subject: Hello, World! == 753 KB Or 752,983 bytes, to be the most accurate. That's what I get when I compile the code below with "gpp -o hello.exe hello.cpp" (gcc version 3.0.3). Isn't that amazing? So tiny a code, so large an executable! Is there a _good_ reason for that?... ---Fausto //---------CUT HERE--------- #include #include int main (void) { cout << "\n\n" << "Hello, World!"; return 0; } //---------CUT HERE---------