X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f From: "Fausto Arinos de A. Barbuto" Newsgroups: comp.os.msdos.djgpp Subject: Hello, World! == 753 KB Date: Wed, 20 Feb 2002 22:36:13 -0800 Lines: 24 Message-ID: NNTP-Posting-Host: clgrtnt2-port-108.dial.telus.net (161.184.43.108) X-Trace: fu-berlin.de 1014270286 4284306 161.184.43.108 (16 [76871]) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com 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---------