Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!goblin1!goblin2!goblin.stu.neva.ru!fi.sn.net!newsfeed2.tdcnet.fi!news.song.fi!not-for-mail Date: Sat, 15 Oct 2011 18:38:07 +0300 From: Donkey Hottie User-Agent: Mozilla/5.0 (X11; Linux i686; 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: <4e98b306$0$281$14726298@news.sunsite.dk> In-Reply-To: <4e98b306$0$281$14726298@news.sunsite.dk> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-ID: <5mlom8-vij.ln1@hurricane.fredriksson.dy.fi> Lines: 65 Organization: NBL Networks Oy NNTP-Posting-Host: 213.157.94.92 X-Trace: 1318693308 news.nbl.fi 4366 213.157.94.92:60017 X-Complaints-To: abuse@nblnetworks.fi Xref: x330-a1.tempe.blueboxinc.net comp.lang.java.programmer:8819 15.10.2011 01:09, Arne Vajhøj kirjoitti: > On 10/14/2011 9:53 AM, Donkey Hottie wrote: >> 14.10.2011 16:26, Tom Anderson kirjoitti: >>> On Fri, 14 Oct 2011, 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; >>>> } >>> >>> A patch for atheists: >>> >>> --- dmr.c 2011-10-14 14:24:07.535509060 +0100 >>> +++ dmr2.c 2011-10-14 14:24:31.291128788 +0100 >>> @@ -3,5 +3,5 @@ >>> int main(void) >>> { >>> printf("Goodbye, world.\n"); >>> - return 0; >>> + exit(0); >>> } >>> >>> tom >>> >> >> #include >> >> main() >> { >> printf("Goodbye, World.\n"); >> exit(0); >> } > > Implicit type. Tsk tsk. > > Arne > > The point was K&R C main() int argc; char *argv[]; { printf("\n"); exit(0); }