Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.tele.dk!feed118.news.tele.dk!dotsrc.org!filter.dotsrc.org!news.dotsrc.org!not-for-mail Date: Sat, 15 Oct 2011 21:39:53 -0400 From: =?ISO-8859-1?Q?Arne_Vajh=F8j?= User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 Newsgroups: comp.lang.java.programmer Subject: Re: [OT] Dennis Ritchie dies at 70 References: <5mlom8-vij.ln1@hurricane.fredriksson.dy.fi> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Lines: 56 Message-ID: <4e9a35ea$0$293$14726298@news.sunsite.dk> Organization: SunSITE.dk - Supporting Open source NNTP-Posting-Host: 72.192.23.141 X-Trace: news.sunsite.dk DXC=bGQT\3n[LP\0[?SRcYIYmQYSB=nbEKnk[AYIL9Z9\Va_JPe3\kP5EUQKBm9cfh9BSTM2;kT<[:>[Q]Da8CZP]o3Y;01JFo`\mgX X-Complaints-To: staff@sunsite.dk Xref: x330-a1.tempe.blueboxinc.net comp.lang.java.programmer:8847 On 10/15/2011 2:12 PM, Volker Borchert wrote: > Tom Anderson wrote: >> On Sat, 15 Oct 2011, Volker Borchert wrote: >> >>> rossum wrote: >>>> On Thu, 13 Oct 2011 14:20:00 -0700, markspace<-@.> wrote: >>>> >>>>> Dennis Ritchie, whose work creating the C programming language and the >>>>> Unix operating system became the cornerstone of today???s modern world of >>>>> computing, has died. He was 70. >>>>> >>>>> Ritchie???s death was announced Wednesday in a staff memo from Jeong Kim, >>>>> president of Bell Labs, where Ritchie worked from 1967 to 2007. >>>>> >>>>> >>>> >>>> #include >>>> >>>> int main(void) >>>> { >>>> printf("Goodbye, world.\n"); >>>> return 0; >>>> } >>> >>> main() { >>> printf("Goodbye, World.\n"); >>> return 0; >>> /* Atheists use >>> exit(0); >>> */ >>> } >> >> At least put that in an IFDEF! > > Combined with<5mlom8-vij.ln1@hurricane.fredriksson.dy.fi> we have now > > main(argc, argv) > int argc; > char *argv[]; > { > printf("Goodbye, World.\n"); > > #ifdef ATHEIST > exit(0); > #else > return 0; > #endif > } > > Can this be agreed upon? K&R style arguments is a brilliant idea for this! Arne