Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
| From | Keith Thompson <kst-u@mib.org> |
|---|---|
| Newsgroups | comp.lang.c |
| Subject | Re: "Know Your Language: C Rules Everything Around Me (Part One)" |
| Date | 2015-09-17 13:20 -0700 |
| Organization | None to speak of |
| Message-ID | <ln7fnog5mw.fsf@kst-u.example.com> (permalink) |
| References | (16 earlier) <mtdu2m$hj$1@dont-email.me> <lnvbb9f2b2.fsf@kst-u.example.com> <190f35b2-0c49-41eb-88b7-1dca3c0e3026@googlegroups.com> <lneghwg9on.fsf@kst-u.example.com> <0e3b5ea5-2220-4725-b0a8-3659db4aad1a@googlegroups.com> |
supercat@casperkitty.com writes:
> On Thursday, September 17, 2015 at 1:52:59 PM UTC-5, Keith Thompson wrote:
>> A C implementation is made up of components that have to work correctly
>> together. The standard has nothing to say about how those components
>> are coordinated or distributed, only that the final product has to work
>> in certain ways. The way it's done on each system depends on what
>> happens to be most convenient for that system, or on the whim of the
>> implementers.
>
> I would suggest that a product that calls itself a "C11 implementation
> for AcmeOS 3.4" should enable anyone who has AcmeOS 3.4 and everything
> required to use it, along with source code for a strictly-conforming
> program, to be able to run that program. If it requires anything
> which someone running AcmeOS 3.4 might not have, then it should not be
> called a "C11 implementation for AcmeOS 3.4", but rather e.g. a "C11
> implementation for use with BobLib 2.7 running on AcmeOS 3.4".
Sure, I have no particular problem with that statement. To put it
another way, any additional components required to run a C program
should be considered part of the implementation.
I'm afraid I don't see the relevance to what we were discussing.
>> Are you thinking of C90? C90 didn't have "hh", so the behavior of the
>> sscanf call was undefined -- so behaving in the C99/C11 manner would be
>> conforming. The committee is usually careful not to change the defined
>> behavior of existing code.
>
> There are some corner cases whose behavior of something which was legal under
> an older standard has changed; I tried to formulate a simple example, but
> failed in that regard. As an alternative example, how about:
>
> printf("%20.15f", 8888.15589);
>
> I believe implementations are allowed to output either "8888.155890000000000"
> or "8888.155889999999999" (correct value is roughly 8888.15588999999999942),
> and there are some cases where it might be important that the behavior be
> consistent (e.g. code might check whether anything in an output file changes
> from one version to another). If "printf" is supplied by the OS rather than
> the C compiler, that will add a needless OS dependency on the program's
> behavior.
The standard says that "the value is rounded to the appropriate number
of digits". The exact value is
8888.155889999999999 417923390865325927734375
I've inserted a space after the 15th digit after the decimal point.
My reading (which could easily be incorrect) is that either
"8888.155889999999999" or "8888.155890000000000" is permitted, and that
the choice is unspecified.
Assuming that's correct, a program that depends on one output or the
other is depending on unspecified behavior. I don't think there's been
a significant change in this area from C90 to C99, or from C99 to C11.
Certainly the behavior can vary from one implementation to another.
Why does it matter, and more particularly why should the Standard care,
whether that variation depends on the compiler, on the runtime library,
or on the operating system?
In practice, the behavior of printf depends on the runtime library, not
on the operating system. For the system I'm using, that would be glibc
(the package name is "libc6"). Why is having the program's behavior
depend on libc6 worse than having it depend on gcc?
For a single-source implementation, where the compiler, linker, runtime
library, and so forth are developed and distributed by the same
organization, the behavior is still going to depend on the
implementation.
[...]
--
Keith Thompson (The_Other_Keith) kst-u@mib.org <http://www.ghoti.net/~kst>
Working, but not speaking, for JetHead Development, Inc.
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Back to comp.lang.c | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-12 15:28 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-12 16:00 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-13 23:07 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-13 16:56 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Richard Heathfield <rjh@cpax.org.uk> - 2015-09-14 01:08 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 10:31 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 03:56 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 14:31 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 05:49 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 01:55 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 13:23 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 11:35 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 14:04 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-15 10:22 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-14 13:07 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-14 13:23 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 06:32 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 16:44 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 18:25 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 21:48 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-14 21:23 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-15 09:07 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 11:40 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-15 13:32 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-15 14:13 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 15:53 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 18:22 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-15 22:13 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 00:55 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 03:51 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 10:34 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 12:43 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 13:12 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 14:46 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 17:26 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-16 17:35 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 10:48 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 19:53 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 12:28 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-16 19:35 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 13:11 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-16 21:59 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" "Charles Richmond" <numerist@aquaporin4.com> - 2015-09-17 01:12 -0500
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 21:11 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 13:53 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 23:07 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 23:10 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 10:26 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 22:59 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 13:15 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 08:35 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 15:40 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 11:16 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 10:38 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 09:17 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 11:08 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 11:52 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 12:33 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 12:55 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 13:20 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 14:32 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-17 22:52 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 16:47 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-18 10:00 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-18 11:14 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" wssimms@gmail.com - 2015-09-18 19:47 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" wssimms@gmail.com - 2015-09-18 19:56 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-19 03:57 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" raltbos@xs4all.nl (Richard Bos) - 2015-09-23 12:32 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 18:28 -0500
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 16:32 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-16 11:03 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 08:42 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 22:53 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-16 22:23 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-16 15:34 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 16:07 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 11:20 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 16:44 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" raltbos@xs4all.nl (Richard Bos) - 2015-10-02 13:18 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 00:45 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 12:02 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 01:17 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 17:24 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 14:23 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 11:27 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 12:07 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 23:10 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 08:40 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 09:02 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 10:44 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-18 13:13 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 22:39 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-18 09:03 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-26 16:46 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-27 08:13 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-29 10:12 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 14:03 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 05:23 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 15:12 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 11:16 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 11:53 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Waldek Hebisch <hebisch@antispam.uni.wroc.pl> - 2015-09-20 15:00 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 18:23 -0500
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 01:23 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 08:58 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-17 16:14 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 09:34 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 12:32 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 03:54 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 14:09 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-17 12:17 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 10:12 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-17 19:41 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 21:10 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-17 20:19 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 21:44 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 13:46 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-18 14:00 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-18 06:19 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Les Cargill <lcargill99@comcast.com> - 2015-09-18 08:25 -0500
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 13:58 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 10:48 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" raltbos@xs4all.nl (Richard Bos) - 2015-09-23 15:09 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-23 09:00 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 12:34 -0500
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 13:32 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 15:01 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-16 02:15 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Rosario19 <Ros@invalid.invalid> - 2015-09-16 09:15 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Rosario19 <Ros@invalid.invalid> - 2015-09-16 10:04 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 10:59 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-16 11:29 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-14 11:27 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Waldek Hebisch <hebisch@math.uni.wroc.pl> - 2015-09-20 16:06 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-20 20:06 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-25 02:09 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-25 08:42 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-25 20:06 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-25 13:05 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-26 00:35 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-26 13:10 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-14 18:44 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-14 12:08 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 21:17 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-15 10:41 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 12:16 +0100
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 18:38 -0500
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-13 18:34 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 13:49 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-13 19:12 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 14:31 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 01:40 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 20:52 +1200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 03:30 -0700
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Melzzzzz <mel@zzzzz.com> - 2015-09-14 05:03 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-14 09:32 +0000
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Melzzzzz <mel@zzzzz.com> - 2015-09-14 04:50 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" Melzzzzz <mel@zzzzz.com> - 2015-09-14 04:42 +0200
Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 10:43 +0200
csiph-web