Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #8819
| Date | 2011-10-15 18:38 +0300 |
|---|---|
| From | Donkey Hottie <donkey@fredriksson.dy.fi> |
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: [OT] Dennis Ritchie dies at 70 |
| References | <j77km3$seg$1@dont-email.me> <a4ag97tigmatu0t5dpe963i41sjtk2v9sm@4ax.com> <alpine.DEB.2.00.1110141423470.15658@urchin.earth.li> <v6rlm8-tl5.ln1@hurricane.fredriksson.dy.fi> <4e98b306$0$281$14726298@news.sunsite.dk> |
| Message-ID | <5mlom8-vij.ln1@hurricane.fredriksson.dy.fi> (permalink) |
| Organization | NBL Networks Oy |
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.
>>>>>
>>>>> <http://blog.sfgate.com/techchron/2011/10/13/dennis-ritchie-computer-pioneer-dies-at-70/?tsp=1>
>>>>>
>>>>>
>>>>
>>>> #include<stdio.h>
>>>>
>>>> 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<stdio.h>
>>
>> main()
>> {
>> printf("Goodbye, World.\n");
>> exit(0);
>> }
>
> Implicit type. Tsk tsk.
>
> Arne
>
>
The point was K&R C
main()
int argc;
char *argv[];
{
printf("<S>\n");
exit(0);
}
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
[OT] Dennis Ritchie dies at 70 markspace <-@.> - 2011-10-13 14:20 -0700
Re: [OT] Dennis Ritchie dies at 70 Roedy Green <see_website@mindprod.com.invalid> - 2011-10-13 17:12 -0700
Re: [OT] Dennis Ritchie dies at 70 Martin Gregorie <martin@address-in-sig.invalid> - 2011-10-14 00:40 +0000
Re: [OT] Dennis Ritchie dies at 70 B1ll Gat3s <wm.g4t3s@m1cr0s0f7.c0m> - 2011-10-14 16:59 -0400
Re: [OT] Dennis Ritchie dies at 70 markspace <-@.> - 2011-10-14 14:13 -0700
Re: [OT] Dennis Ritchie dies at 70 B1ll Gat3s <wm.g4t3s@m1cr0s0f7.c0m> - 2011-10-14 17:22 -0400
Re: [OT] Dennis Ritchie dies at 70 Lew <lewbloch@gmail.com> - 2011-10-14 15:44 -0700
Re: [OT] Dennis Ritchie dies at 70 B1ll Gat3s <wm.g4t3s@m1cr0s0f7.c0m> - 2011-10-15 01:11 -0400
Re: [OT] Dennis Ritchie dies at 70 Lew <lewbloch@gmail.com> - 2011-10-15 08:54 -0700
Re: [OT] Dennis Ritchie dies at 70 B1ll Gat3s <wm.g4t3s@m1cr0s0f7.c0m> - 2011-10-15 15:37 -0400
Re: Dennis Ritchie dies at 70 Paul Cager <paul.cager@googlemail.com> - 2011-10-17 03:00 -0700
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-15 21:43 -0400
Re: [OT] Dennis Ritchie dies at 70 B1ll Gat3s <wm.g4t3s@m1cr0s0f7.c0m> - 2011-10-16 01:30 -0400
Re: [OT] Dennis Ritchie dies at 70 "Charles Hottel" <chottel@earthlink.net> - 2011-10-16 11:19 -0400
Re: [OT] Dennis Ritchie dies at 70 B1ll Gat3s <wm.g4t3s@m1cr0s0f7.c0m> - 2011-10-16 18:28 -0400
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-16 22:24 -0400
Re: [OT] Dennis Ritchie dies at 70 B1ll Gat3s <wm.g4t3s@m1cr0s0f7.c0m> - 2011-10-17 21:34 -0400
Re: [OT] Dennis Ritchie dies at 70 Tom Anderson <twic@urchin.earth.li> - 2011-10-16 23:21 +0100
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-16 22:27 -0400
Re: [OT] Dennis Ritchie dies at 70 rossum <rossum48@coldmail.com> - 2011-10-14 13:19 +0100
Re: [OT] Dennis Ritchie dies at 70 Tom Anderson <twic@urchin.earth.li> - 2011-10-14 14:26 +0100
Re: [OT] Dennis Ritchie dies at 70 Donkey Hottie <donkey@fredriksson.dy.fi> - 2011-10-14 16:53 +0300
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-14 18:09 -0400
Re: [OT] Dennis Ritchie dies at 70 v_borchert@despammed.com (Volker Borchert) - 2011-10-15 09:28 +0000
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-15 21:43 -0400
Re: [OT] Dennis Ritchie dies at 70 v_borchert@despammed.com (Volker Borchert) - 2011-10-16 04:51 +0000
Re: [OT] Dennis Ritchie dies at 70 Donkey Hottie <donkey@fredriksson.dy.fi> - 2011-10-15 18:38 +0300
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-15 21:51 -0400
Re: [OT] Dennis Ritchie dies at 70 v_borchert@despammed.com (Volker Borchert) - 2011-10-15 09:27 +0000
Re: [OT] Dennis Ritchie dies at 70 Tom Anderson <twic@urchin.earth.li> - 2011-10-15 14:43 +0100
Re: [OT] Dennis Ritchie dies at 70 v_borchert@despammed.com (Volker Borchert) - 2011-10-15 18:12 +0000
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-15 21:39 -0400
Re: [OT] Dennis Ritchie dies at 70 David Lamb <dalamb@cs.queensu.ca> - 2011-10-20 12:39 -0400
Re: [OT] Dennis Ritchie dies at 70 Gene Wirchenko <genew@ocis.net> - 2011-10-20 10:04 -0700
Re: [OT] Dennis Ritchie dies at 70 Tom Anderson <twic@urchin.earth.li> - 2011-10-20 20:36 +0100
Re: [OT] Dennis Ritchie dies at 70 Jan Burse <janburse@fastmail.fm> - 2011-10-21 20:42 +0200
Re: [OT] Dennis Ritchie dies at 70 Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2011-10-21 18:54 -0700
Re: [OT] Dennis Ritchie dies at 70 Arne Vajhøj <arne@vajhoej.dk> - 2011-10-15 21:37 -0400
csiph-web