comp.lang.ada
 help / color / mirror / Atom feed
From: fred@genesis.demon.co.uk (Lawrence Kirby)
Subject: Re: How big is an int? (was: Yet another stupid language war (was: ... the only languages you need!!))
Date: 1997/11/16
Date: 1997-11-16T00:00:00+00:00	[thread overview]
Message-ID: <879713346snz@genesis.demon.co.uk> (raw)
In-Reply-To: danpop.879460135@news.cern.ch


In article <danpop.879460135@news.cern.ch> Dan.Pop@cern.ch "Dan Pop" writes:

>In <879381995snz@genesis.demon.co.uk> fred@genesis.demon.co.uk (Lawrence Kirby)
> writes:
>
>>In article <danpop.879204372@news.cern.ch> Dan.Pop@cern.ch "Dan Pop" writes:
>>
>>...
>>
>>>Nope, it cannot.  The behaviour of rand() is unspecified.
>>
>>Show me where the standard says that. If the standard doesn't say explicitly
>>that rand() has unspecified behaviour then it doesn't, as far as the
>>standard's meaning of the term "unspecified" is concerned. Annex G.1,
>>barring errors, lists all cases of unspecified behaviour in the standard.
>
>Show me where the standard specifies the behaviour of rand(), so that I
>can predict the output of the following program without having to compile
>and run it:
>
>    #include <stdio.h>
>    #incldue <stdlib.h>
>
>    int main()
>    {
>        printf("%d\n", rand());
>        return 0;
>    }
>
>If I can't do that, then the program is not strictly conforming.

Sorry, you've lost me there. Where does the standard say that the output
of a program has to be predictable for it to be strictly conforming?
Clause 4 certaintly doesn't say anything like "A strictly conforming
program shall not produce output dependent on anything that is not
fully specified in this International Standard". What it says is:

"A strictly conforming shall use only those features of the language and
 library specified in this International Standard. It shall not produce
 output dependent on any unspecified, undefined, or implementation-defined
 behaviour, and shall not exceed any minimum implementation limit."

>Furthermore, even if I read the implementation's documentation, there is
>still no guarantee that I can predict the output.

True, but not relevant. There is a potential issue relating to the value
of RAND_MAX. If this was implementation-defined or unspecified then there
would be a reasonable argument that your example is not strictly comforming.
However I can't find anything in the standard that makes it either of these.

>>>Also code using
>>>floating point arithmetic or most of the functions from <math.h> cannot
>>>be strictly conforming.
>>
>>That is trickier since the output may depend on implementation-defined
>>defined aspects, notably the properties of the floating point types
>>specified in 5.2.4.2.2. 6.1.2.5 makes the representation of floating
>>point types unspecified but I don't see anything else about them that is.
>>However floating point is a mess, it is difficult to predict anything
>>for certain.
>
>You can't even predict the result of 1.0 + 1.0 based on the text of the
>standard.

But, again, predictability isn't a property that the standard ascribes to
a strictly conforming program. I'm not quite sure where this idea comes
from. Maybe it is a feeling that strict conformance gives maximal portability
and in some sense maximal portability suggests precisely reproducible
results. That is a false correspondance as far as the standard is
concerned.

(as an aside I think I could put forward a reasonable proof that 1.0 +
1.0 is predictable, but don't lose sight of the fact that it is the program
output, not individual calculations that is the measure of strict
conformance).

>>>>>It is unspecified (or maybe implementation-defined) when an I/O operation
>>>>>fails and if that failure affects the behaviour of your program...
>>>>
>>>>No, it isn't. The standard states explicitly all cases of unspecified and
>>>>implementation-defined behaviour, these terms are very specific.
>>>>Only undefined behaviour can result from a lack of definition, and even
>>>>then only from a *total* lack of definition (or there is a defect in the
>>>>standard). getc() (for example) has no unspecified and no
>>>>implementation-defined behaviour (*).
>>>
>>>You missed the point.
>>
>>No, this is the point.
>>
>>> It is undefined when the well defined conditions
>>>that lead to the failure of a stdio function occur.
>>
>>Again, you are using your own definition of a term, not the standard's.
>>3.16 describes what undefined behaviour is and when it can occur. The
>>situation you describe doesn't fit that description.
>
>Where did I used the term "undefined behaviour"???

I had to assume that otherwise what you wrote had no relevance to the
issue of strict conformance.

>>Simply knowing a program is strictly conforming does not mean you can
>>predict what it will output.
>
>Then, it is not strictly conforming.

They you have a different definition of what the term "strictly conforming"
means compared to the one I see in the standard. These are the full
requirements for strict conformance as I see them in the standard:

1. Each translation unit that makes up a program has valid syntax.

2. There are no constraint violations in the program.

3. The program must not exceed any minimum translation limit

4. The program must use only the features of the language and library
   specified in the standard (I include this since it is specified but it
   may not add anything not covered by the next 3 requirements, however
   it is perhaps what gives requirements 1 and 2 the force of strict
   conformance).

5. The program must not produce output dependent on implementation-defined
   behaviour. Note that implementation-defined behaviour only exists when
   there is an explicit requirement in the standard for the implementation
   to document the behaviour. (3.10)

6. The program must not produce output dependent on unspecified behaviour.
   Note that unspecified behaviour can only exist where it is stated
   explicitly in the standard. This is perhaps the most critical point:
   see the definition of unspecified behaviour in 3.17, particularly
   the word "explicitly").

7. The program must not produce output dependent on undefined behaviour.
   (3.16). The important point here is that while undefined behaviour
   can exist through a lack of definition, it must be a *total* lack
   of definition i.e. "for which this standard imposes *no* requirements"
   (my emphasis). While not normative Annex G is a good reference for
   this (as well as 5 and 6) with perhaps some further indication of
   intent.

There are separate requirements for conforming implementations but
these aren't an issue here. I assert that any program that meets the
7 requirements above is strictly conforming, since these are the
only requirements I can find in the standard.

>>However if you do know what input a
>>strictly conforming program receives you should be able to predict from
>>the standard alone what output it generates (although I'm not 100% sure of
>>that). From this perspective values returned by rand(), for example, are
>>input to the program.
>
>Chapter and verse, please.  According to ANSI Classic 1.2:
>
>    1.2 SCOPE
>
>       This Standard specifies: 
>    ...
>     * the representation of input data to be processed by C programs;
>    ...
>
>So, if the values of rand are input to the program, the standard must 
>specify that.  As far as I can tell, rand() is not described in the 
>INPUT/OUTPUT section of the library :-)

Whether you choose to treat the values returned by rand() as input to the
program or not doesn't affect any of the 7 requirements above so we
shouldn't get stuck on this point. I think it is reasonable and useful to
consider it as input to the program.

>The wording of the standard clearly suggests that ALL the program input
>data come from streams, via the stdio functions (it doesn't even include
>the getenv() function as a source of program input).  If you disagree, 
>please provide the relevant quotes.

OK, if you don't like the term "program input" we'll just have to think of
another that can cover file input, argv, errno, rand(), getenv(), time(),
clock(), localeconv(), system(NULL) and anything else I've overlooked.
Maybe something like "environment derived data".

>>I'd agree with you however that it is best to leave
>>floating point out of this. :-)
>
>There is no conceptual difference between the way the standard deals with
>floating point and with the rand/srand functions.  On the contrary, I'd say
>that the description of the sin() function is more precise than that of
>rand() (although not precise enough to allow predicting the result of a
>sin() call).

The question is whether output derived from sin() is dependent on
implementation-defined characteristics specified in 5.2.4.2.2. rand()
doesn't have such issues (unless I've missed something in the standard
relating to RAND_MAX).

-- 
-----------------------------------------
Lawrence Kirby | fred@genesis.demon.co.uk
Wilts, England | 70734.126@compuserve.com
-----------------------------------------





  reply	other threads:[~1997-11-16  0:00 UTC|newest]

Thread overview: 593+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1997-11-12  0:00 ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! John Stevens
1997-10-28  0:00 ` ADA SUCKS, C/C++/JAVA RULES!!!! John Black
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` BRIAN LANGENBERGER
1997-10-28  0:00     ` Tucker Taft
1997-10-28  0:00     ` Rob
1997-10-29  0:00     ` Nope! was " JT (from Fritz)
1997-10-29  0:00       ` David A. Frantz
1997-10-29  0:00       ` Phlip C Plumlee
1997-10-30  0:00         ` Kaz Kylheku
1997-10-31  0:00       ` Alan E & Carmel J Brain
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Rob Eamon
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00     ` Steve Ropa
1997-10-28  0:00       ` Charles R. Lyttle
1997-10-28  0:00       ` Current Ada strengths - was " Robert S. White
1997-10-29  0:00         ` Steve Ropa
1997-10-30  0:00           ` Bob Horvath
1997-10-30  0:00             ` Charles Hixson
1997-10-30  0:00             ` Derek A Benner
     [not found]             ` <34591453.0@news.eznet.net>
1997-10-30  0:00               ` Bob Horvath
1997-10-31  0:00                 ` David A. Frantz
1997-10-31  0:00                 ` Steve Ropa
1997-10-31  0:00                 ` Kenneth W. Sodemann
1997-10-30  0:00             ` Steve Ropa
1997-10-30  0:00             ` Larry Kilgallen
1997-10-30  0:00               ` Kaz Kylheku
1997-10-31  0:00             ` Robert S. White
1997-10-31  0:00               ` Shmuel (Seymour J.) Metz
1997-10-31  0:00               ` Steve Ropa
1997-10-30  0:00       ` ADA work, C/C++/JAVA crashes!!!! Shmuel (Seymour J.) Metz
1997-10-30  0:00       ` ADA SUCKS, C/C++/JAVA RULES!!!! Kenneth W. Sodemann
1997-10-30  0:00     ` Kenneth W. Sodemann
1997-12-04  0:00     ` tbb03ar
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Shayne Flint
1997-10-28  0:00     ` Dennis Weldy
1997-10-29  0:00     ` Alan E & Carmel J Brain
1997-10-29  0:00       ` CodeRed
1997-10-30  0:00         ` Alan Brain
1997-10-28  0:00   ` John Black
1997-10-28  0:00     ` Dann Corbit
1997-10-29  0:00       ` Adam Beneschan
1997-10-28  0:00     ` John Bode
1997-10-28  0:00     ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! John Black
1997-10-28  0:00       ` David A. Frantz
1997-10-29  0:00         ` John Black
1997-10-29  0:00           ` ADA SUCKS, C/C++/JAVA RULES!!!! Dale Stanbrough
1997-10-29  0:00             ` Wasted words W. Wesley Groleau x4923
1997-10-29  0:00           ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Mike Copeland
1997-10-29  0:00             ` Kaz Kylheku
1997-10-30  0:00             ` ADA and Pascal work, C,C++, and Java are the only lheadaches " Shmuel (Seymour J.) Metz
1997-11-06  0:00               ` John Stevens
1997-11-06  0:00                 ` Samuel Tardieu
1997-11-07  0:00                   ` John Stevens
1997-11-06  0:00                     ` Charles R. Lyttle
1997-11-07  0:00                       ` John Stevens
1997-11-08  0:00                         ` Charles R. Lyttle
1997-11-08  0:00                           ` Mark Wilden
1997-11-08  0:00                         ` ADA ,Pascal, and Basic ROCK! C,C++, and Java are nothing " John Rickard
1997-11-06  0:00                     ` ADA and Pascal work, C,C++, and Java are the only lheadaches " David  Weller
1997-10-30  0:00             ` ADA SUCKS, C/C++/JAVA RULES!!!! John Gluth
1997-10-31  0:00               ` Bernard J. Girardot
1997-11-04  0:00               ` Michael Stark
1997-10-30  0:00             ` Yet another stupid language war (was: ... the only languages you need!!) W. Wesley Groleau x4923
1997-10-30  0:00               ` Peter Seebach
1997-10-30  0:00                 ` Bob Horvath
1997-10-31  0:00                   ` Shmuel (Seymour J.) Metz
1997-10-31  0:00                   ` Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-10-31  0:00                     ` Bob Horvath
1997-10-31  0:00                       ` Ed Falis
1997-10-31  0:00                     ` Shmuel (Seymour J.) Metz
1997-10-31  0:00                   ` Peter Seebach
1997-10-31  0:00                     ` Bob Horvath
1997-11-01  0:00                       ` Peter Seebach
1997-10-31  0:00                     ` Pat Rogers
1997-10-31  0:00                       ` Peter Seebach
1997-11-01  0:00                       ` Dr John Stockton
1997-11-02  0:00                         ` Simon Wright
1997-11-02  0:00                           ` Robert Dewar
1997-11-03  0:00                             ` Simon Wright
1997-11-03  0:00                         ` Richard A. O'Keefe
1997-11-04  0:00                   ` How big is an int? (was: Yet another stupid language war (was: ... the only languages you need!!)) Ted Lyngmo
1997-11-04  0:00                     ` Daniel Anderson
1997-11-04  0:00                       ` Marcelo Meira
1997-11-04  0:00                         ` Ron Natalie
1997-11-04  0:00                       ` Lawrence Kirby
     [not found]                       ` <34666a87.96408197@pncnt.tecnomen.ie>
1997-11-04  0:00                         ` Peter Mayne
     [not found]                           ` <346a4ce9.154362161@pncnt.tecnomen.ie>
1997-11-05  0:00                             ` Ulric Eriksson
1997-11-05  0:00                           ` Dan Pop
1997-11-06  0:00                             ` Boyd Roberts
1997-11-09  0:00                               ` Peter Mayne
1997-11-06  0:00                             ` Peter Mayne
1997-11-05  0:00                           ` nospam
1997-11-05  0:00                             ` Ron Natalie
1997-11-05  0:00                         ` Corey Minyard
1997-11-04  0:00                     ` How big is an int? Richard Stamp
1997-11-04  0:00                     ` How big is an int? (was: Yet another stupid language war (was: ... the only languages you need!!)) Kaz Kylheku
1997-11-05  0:00                       ` nospam
1997-11-05  0:00                         ` Kaz Kylheku
1997-11-06  0:00                           ` James S. Rogers
1997-11-06  0:00                             ` Kaz Kylheku
1997-11-05  0:00                         ` Lawrence Kirby
1997-11-06  0:00                           ` R S Haigh
1997-11-06  0:00                           ` nospam
1997-11-05  0:00                         ` Peter Seebach
1997-11-05  0:00                           ` Kaz Kylheku
1997-11-06  0:00                             ` Morris M. Keesan
1997-11-09  0:00                               ` Lawrence Kirby
1997-11-10  0:00                                 ` Dan Pop
1997-11-06  0:00                             ` Dan Pop
1997-11-07  0:00                               ` Mike McCarty
1997-11-07  0:00                                 ` Dan Pop
1997-11-07  0:00                                 ` Peter Seebach
1997-11-06  0:00                             ` Lawrence Kirby
1997-11-06  0:00                               ` Kaz Kylheku
1997-11-07  0:00                                 ` Dan Pop
1997-11-09  0:00                                   ` Lawrence Kirby
1997-11-10  0:00                                     ` Dan Pop
1997-11-13  0:00                                       ` Lawrence Kirby
1997-11-13  0:00                                         ` Lawrence Kirby
1997-11-13  0:00                                           ` Boyd Roberts
1997-11-14  0:00                                             ` Jos De Laender
1997-11-15  0:00                                               ` Christopher Green
1997-11-19  0:00                                             ` Lawrence Kirby
1997-11-19  0:00                                               ` Alan E & Carmel J Brain
1997-11-19  0:00                                                 ` Kaz Kylheku
1997-11-20  0:00                                                   ` Alan E & Carmel J Brain
1997-11-20  0:00                                                     ` Craig Franck
1997-11-21  0:00                                                       ` Alan E & Carmel J Brain
1997-11-21  0:00                                                         ` Kaz Kylheku
1997-11-23  0:00                                                           ` Alan E & Carmel J Brain
1997-11-21  0:00                                                         ` Robert Dewar
1997-11-21  0:00                                                           ` Jon S Anthony
1997-11-21  0:00                                                           ` Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-11-22  0:00                                                             ` Robert Dewar
1997-11-24  0:00                                                               ` Shmuel (Seymour J.) Metz
1997-11-24  0:00                                                           ` Richard A. O'Keefe
1997-11-27  0:00                                                         ` Rakesh Malhotra
1997-11-27  0:00                                                         ` Rakesh Malhotra
1997-11-24  0:00                                                       ` Richard A. O'Keefe
1997-11-19  0:00                                                 ` Shmuel (Seymour J.) Metz
1997-11-24  0:00                                                   ` Alan E & Carmel J Brain
1997-11-13  0:00                                         ` Dan Pop
1997-11-16  0:00                                           ` Lawrence Kirby [this message]
     [not found]                                             ` <danpop.879781536@news.cern.ch>
1997-11-19  0:00                                               ` Lawrence Kirby
1997-11-19  0:00                                                 ` Dan Pop
1997-11-06  0:00                             ` Peter Seebach
1997-11-06  0:00                               ` Kaz Kylheku
1997-11-06  0:00                                 ` Peter Seebach
1997-11-06  0:00                         ` Richard Kenner
1997-11-07  0:00                           ` Dan Pop
1997-11-07  0:00                             ` Paul F. Pearson
1997-11-08  0:00                               ` Dan Pop
     [not found]                               ` <danpop..879030933@news.cern.ch>
1997-11-09  0:00                                 ` Lawrence Kirby
1997-11-14  0:00                                   ` Morris M. Keesan
1997-11-07  0:00                         ` Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-11-07  0:00                         ` Boyd Roberts
1997-11-04  0:00                   ` Yet another stupid language war (was: ... the only languages you need!!) Christopher Eltschka
1997-10-31  0:00                 ` Dr E. Buxbaum
1997-10-31  0:00                   ` Peter Seebach
1997-10-31  0:00                 ` Timo Salmi
1997-10-30  0:00               ` Al Christians
     [not found]                 ` <01bce587$2efe61a0$8691440c@worldnet>
1997-10-31  0:00                   ` Jerry Sams
1997-10-31  0:00                     ` Shmuel (Seymour J.) Metz
1997-11-02  0:00                       ` Jerry Sams
1997-10-31  0:00                     ` John Rickard
1997-11-02  0:00                       ` Jerry Sams
1997-11-01  0:00                     ` Yet another stupid language war (was: ... the only langu Jerry van Dijk
1997-12-05  0:00                     ` Yet another stupid language war (was: ... the only languages you need!!) baddog
1997-11-01  0:00               ` Richard Curzon
1997-10-31  0:00                 ` Bob Horvath
1997-11-01  0:00                 ` Russ
1997-11-01  0:00                 ` Ken Deboy
1997-11-01  0:00                 ` Kaz Kylheku
1997-11-01  0:00                   ` Craig Franck
1997-11-03  0:00                 ` John G. Volan
1997-11-04  0:00                   ` Phosphor
1997-10-31  0:00             ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Alan E & Carmel J Brain
1997-10-30  0:00               ` Jon S Anthony
1997-10-31  0:00                 ` Craig Franck
1997-10-31  0:00                   ` Jon S Anthony
1997-11-01  0:00                     ` Porting Experiences (was Ada and Pascal etc ) Alan E & Carmel J Brain
1997-11-01  0:00                       ` Jon S Anthony
1997-11-01  0:00                       ` Craig Franck
1997-11-03  0:00                         ` Shmuel (Seymour J.) Metz
1997-11-03  0:00                           ` Kaz Kylheku
1997-11-04  0:00                             ` Pat Rogers
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-04  0:00                             ` Shmuel (Seymour J.) Metz
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-05  0:00                                 ` Shmuel (Seymour J.) Metz
1997-11-05  0:00                                 ` Boyd Roberts
1997-11-05  0:00                               ` Craig Franck
1997-11-05  0:00                                 ` Shmuel (Seymour J.) Metz
1997-11-06  0:00                                   ` Lawrence Kirby
1997-11-07  0:00                                     ` Boyd Roberts
1997-11-07  0:00                                       ` Shmuel (Seymour J.) Metz
1997-11-07  0:00                                         ` Peter Seebach
1997-11-07  0:00                                   ` Craig Franck
1997-11-07  0:00                                     ` Shmuel (Seymour J.) Metz
1997-11-08  0:00                                       ` Craig Franck
1997-11-08  0:00                                         ` Kaz Kylheku
1997-11-08  0:00                                           ` Vesa Karvonen
1997-11-10  0:00                                         ` Shmuel (Seymour J.) Metz
1997-11-11  0:00                                           ` Craig Franck
1997-11-12  0:00                                             ` Shmuel (Seymour J.) Metz
1997-11-14  0:00                                               ` Craig Franck
1997-11-24  0:00                                               ` Ralph Silverman
1997-11-09  0:00                                       ` Dennis Weldy
1997-11-10  0:00                                         ` Shmuel (Seymour J.) Metz
1997-11-10  0:00                                           ` Dennis Weldy
1997-11-12  0:00                                             ` Shmuel (Seymour J.) Metz
1997-11-14  0:00                                               ` Robert Munck
1997-11-05  0:00                             ` Samuel T. Harris
1997-11-05  0:00                               ` Kaz Kylheku
1997-11-06  0:00                                 ` Alan E & Carmel J Brain
1997-11-06  0:00                                   ` Kaz Kylheku
1997-11-06  0:00                                   ` Paul Campbell
1997-11-07  0:00                                 ` Samuel T. Harris
1997-11-13  0:00                               ` Steve Summit
1997-11-13  0:00                                 ` Samuel T. Harris
     [not found]                           ` <63m3pt$t2d@bgtnsc02.worldnet.att.net>
1997-11-04  0:00                             ` Shmuel (Seymour J.) Metz
1997-11-05  0:00                               ` Craig Franck
1997-11-04  0:00                           ` Lawrence Kirby
1997-11-04  0:00                             ` Shmuel (Seymour J.) Metz
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-05  0:00                                 ` Chris Brand
1997-11-05  0:00                                   ` Dann Corbit
1997-11-05  0:00                                   ` Kaz Kylheku
1997-11-05  0:00                                   ` Kaz Kylheku
1997-11-05  0:00                                   ` Lawrence Kirby
1997-11-07  0:00                                 ` Boyd Roberts
1997-11-05  0:00                               ` Craig Franck
1997-11-05  0:00                               ` Lawrence Kirby
1997-11-05  0:00                               ` Steve Summit
1997-11-05  0:00                               ` James Youngman
1997-11-03  0:00                         ` Alan E & Carmel J Brain
1997-11-03  0:00                         ` Jon S Anthony
1997-11-01  0:00                     ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Lawrence Kirby
1997-10-31  0:00                   ` Porting (was ADA and Pascal etc) Alan E & Carmel J Brain
1997-10-31  0:00                     ` Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-11-01  0:00                       ` Alan E & Carmel J Brain
1997-10-31  0:00                     ` Peter Seebach
1997-10-31  0:00                       ` Matt Austern
1997-10-31  0:00                         ` Peter Seebach
1997-10-31  0:00                         ` Jon S Anthony
1997-11-01  0:00                         ` Alan E & Carmel J Brain
1997-11-01  0:00                         ` Kaz Kylheku
1997-11-01  0:00                       ` Alan E & Carmel J Brain
1997-11-01  0:00                         ` Peter Seebach
1997-10-31  0:00                     ` Kaz Kylheku
1997-10-31  0:00                       ` Shmuel (Seymour J.) Metz
1997-11-02  0:00                       ` Lawrence Kirby
1997-11-03  0:00                         ` Simon Wright
1997-11-04  0:00                           ` Peter Seebach
1997-11-09  0:00                             ` Simon Wright
1997-11-03  0:00                         ` Jon S Anthony
1997-11-04  0:00                         ` Mixing declarations and statements (Re: Porting (was ADA and Pascal etc)) �amonn McManus
1997-11-04  0:00                           ` Peter Seebach
1997-11-04  0:00                             ` Charles Hixson
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-05  0:00                               ` Peter Seebach
1997-11-04  0:00                             ` s/w manual Nameir Ismeil
1997-11-05  0:00                             ` Mixing declarations and statements (Re: Porting (was ADA and Pascal etc)) �amonn McManus
1997-11-04  0:00                 ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Rud Merriam
1997-10-30  0:00               ` Kaz Kylheku
1997-10-31  0:00                 ` Richard A. O'Keefe
1997-11-03  0:00                   ` Kaz Kylheku
1997-11-01  0:00                 ` Portability: C, C++, Ada Alan E & Carmel J Brain
1997-11-01  0:00                   ` Peter Seebach
1997-11-05  0:00                 ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! John Stevens
1997-11-05  0:00               ` John Stevens
1997-11-06  0:00                 ` Kaz Kylheku
1997-11-07  0:00                   ` Robert Dewar
1997-11-07  0:00                     ` Kaz Kylheku
1997-11-07  0:00                 ` Larry Elmore
1997-11-11  0:00                 ` Dr E. Buxbaum
1997-11-11  0:00                   ` Russ Lyttle
1997-11-12  0:00                   ` Marc Wachowitz
1997-10-30  0:00           ` Jon S Anthony
1997-10-31  0:00           ` Kaz Kylheku
1997-10-31  0:00             ` Steve Ropa
1997-10-29  0:00         ` Shombe Kroll
1997-10-29  0:00           ` Nat Pryce
1997-10-29  0:00           ` John Bode
1997-10-30  0:00             ` Kaz Kylheku
1997-11-01  0:00             ` Gary A. Wiltshire
1997-10-29  0:00           ` Mike Copeland
1997-10-29  0:00           ` John Black
1997-11-03  0:00             ` Olof Oberg
1997-10-31  0:00           ` Richard A. O'Keefe
1997-10-29  0:00       ` Kaz Kylheku
1997-10-30  0:00         ` John Rickard
1997-10-29  0:00       ` Xu Yifeng
1997-10-30  0:00         ` Scott Baierl
1997-11-06  0:00           ` John Stevens
1997-11-06  0:00             ` Kaz Kylheku
1997-11-06  0:00             ` William & Melissa Thornton
     [not found]         ` <347067B8.46@lysator.liu.se>
1997-11-18  0:00           ` English SUCKS, Chinese is the only language " Dr E. Buxbaum
1997-11-19  0:00             ` Shmuel (Seymour J.) Metz
1997-11-19  0:00               ` Kaz Kylheku
1997-11-19  0:00             ` Matt Corey
1997-11-19  0:00               ` Shmuel (Seymour J.) Metz
1997-11-19  0:00                 ` Kaz Kylheku
1997-11-20  0:00                   ` Mike Smith
1997-11-21  0:00                     ` David Weller
     [not found]                   ` <3474B3E4.67FA@gsg.eds.com>
1997-11-21  0:00                     ` Dennis Weldy
1997-11-24  0:00                       ` Shmuel (Seymour J.) Metz
1997-11-25  0:00                         ` Peter Seebach
1997-11-25  0:00                         ` Dennis Weldy
1997-11-25  0:00                 ` Martin M Dowie
1997-11-18  0:00           ` Chieh Cheng
1997-11-19  0:00             ` Shmuel (Seymour J.) Metz
1997-11-24  0:00               ` Richard A. O'Keefe
     [not found]           ` <64qllr$c45@mtinsc03.worldnet.att.net>
1997-11-18  0:00             ` Davide Bionda
1997-11-18  0:00               ` Timo Salmi
1997-11-18  0:00               ` John Rickard
1997-11-18  0:00                 ` Chieh Cheng
1997-11-19  0:00                   ` John Rickard
     [not found]                     ` <01bcf51e$35e2a0c0$0200000a@kld_mcs>
1997-11-19  0:00                       ` John Rickard
1997-11-19  0:00                   ` Gary A. Wiltshire
1997-11-19  0:00                     ` Dennis Weldy
1997-11-19  0:00                       ` John Rickard
1997-11-21  0:00                         ` Dennis Weldy
1997-11-19  0:00                     ` Chieh Cheng
1997-11-20  0:00                       ` Mike Smith
1997-11-18  0:00                 ` Mark Wilden
1997-11-19  0:00                   ` Les Hazlewood
1997-11-19  0:00                   ` Kaz Kylheku
1997-11-19  0:00                     ` Mark Wilden
1997-12-17  0:00                       ` Jeffrey George
1997-12-17  0:00                         ` Mark Wilden
1997-11-19  0:00                     ` system
1997-11-19  0:00                       ` Kaz Kylheku
1997-11-20  0:00                         ` Boyd Roberts
1997-11-19  0:00                       ` Matt Corey
1997-11-29  0:00                         ` D. Ross
1997-11-29  0:00                           ` Mark Wilden
1997-12-02  0:00                             ` William Rapp
1997-11-29  0:00                           ` Spaceman Spiff
1997-11-26  0:00                       ` michael j tobler
1997-11-27  0:00                     ` Denny
1997-11-18  0:00                 ` Jean-Sebastien Payette
1997-11-18  0:00                   ` Dennis Weldy
1997-11-18  0:00                     ` Jean-Sebastien Payette
1997-11-19  0:00                       ` Dennis Weldy
1997-11-19  0:00                       ` Kaz Kylheku
1997-11-19  0:00                     ` John Rickard
1997-11-19  0:00                       ` Davide Bionda
1997-11-19  0:00                         ` John Rickard
1997-11-19  0:00                           ` Mike Smith
1997-11-19  0:00                             ` Your english sucks, mine is better John Rickard
1997-11-19  0:00                               ` Larry Elmore
     [not found]                               ` <01bcf537$c96b7380$0200000a@kld_mcs>
1997-11-20  0:00                                 ` system
1997-11-20  0:00                                 ` John Rickard
     [not found]                                   ` <652aes$63a$1@news01.micron.net>
1997-11-20  0:00                                     ` Dennis Weldy
1997-11-23  0:00                               ` Andrew Koenig
1997-11-23  0:00                                 ` Spaceman Spiff!
1997-11-23  0:00                                   ` Andrew Koenig
1997-11-23  0:00                                 ` Robert Dewar
1997-11-23  0:00                                   ` billg
1997-11-23  0:00                                     ` Richard Kenner
1997-11-23  0:00                                       ` billg
1997-11-24  0:00                                         ` Peter Seebach
1997-11-24  0:00                                         ` Richard Kenner
1997-11-24  0:00                                           ` Mark Wilden
1997-11-24  0:00                                             ` billg
1997-11-24  0:00                                             ` Matthew S. Whiting
1997-11-24  0:00                                           ` billg
1997-11-24  0:00                                             ` Larry Elmore
1997-11-24  0:00                                               ` billg
1997-11-24  0:00                                                 ` Larry Elmore
1997-11-25  0:00                                                   ` billg
1997-11-25  0:00                                               ` michael
1997-11-24  0:00                                                 ` billg
1997-11-27  0:00                                                   ` Paul Holden
1997-11-25  0:00                                             ` Craig Franck
1997-11-25  0:00                                             ` Dennis Weldy
1997-11-26  0:00                                               ` billg
1997-11-27  0:00                                                 ` Boyd Roberts
1997-11-28  0:00                                                   ` billg
1997-11-28  0:00                                                     ` Steven Read
1997-11-24  0:00                                         ` Larry Elmore
1997-11-25  0:00                                           ` billg
1997-11-29  0:00                                             ` Larry Elmore
1997-12-01  0:00                                               ` billg
1997-11-24  0:00                                         ` Dennis Weldy
1997-11-24  0:00                                           ` billg
1997-11-24  0:00                                             ` Rob Eamon
1997-11-24  0:00                                               ` billg
1997-11-24  0:00                                               ` Kaz Kylheku
1997-11-24  0:00                                         ` Me
1997-11-24  0:00                                           ` Timo Salmi
1997-11-24  0:00                                           ` Rob Eamon
1997-11-24  0:00                                           ` Matt Corey
1997-11-24  0:00                                           ` Mark Wilden
1997-11-25  0:00                                           ` Leon Jones
1997-11-24  0:00                                             ` Larry Elmore
1997-11-25  0:00                                               ` Larry Elmore
1997-11-25  0:00                                                 ` billg
1997-11-26  0:00                                                   ` Craig Franck
1997-11-26  0:00                                                     ` billg
1997-11-25  0:00                                               ` billg
1997-11-29  0:00                                                 ` Larry Elmore
1997-11-29  0:00                                                   ` billg
     [not found]                                                     ` <65s1u8$8kj@netra.montana.edu>
1997-11-30  0:00                                                       ` Larry Elmore
1997-12-01  0:00                                                       ` billg
1997-11-24  0:00                                     ` Andrew Koenig
1997-11-24  0:00                                       ` billg
1997-11-25  0:00                                         ` Dennis Weldy
1997-11-26  0:00                                           ` billg
1997-11-26  0:00                                             ` Mark Wilden
1997-11-27  0:00                                               ` Billy Chambless
1997-11-27  0:00                                                 ` Mark Wilden
1997-11-27  0:00                                                   ` Spaceman Spiff!
1997-11-28  0:00                                                   ` Your boss sucks, mine is better (was: " Billy Chambless
1997-11-28  0:00                                                     ` Mark Wilden
1997-11-28  0:00                                                       ` Peter Seebach
1997-11-28  0:00                                                         ` Mark Wilden
1997-12-01  0:00                                                         ` Shmuel (Seymour J.) Metz
1997-12-02  0:00                                                           ` Christian Bau
1997-12-01  0:00                                                     ` billg
1997-11-28  0:00                                                   ` Craig Franck
1997-11-27  0:00                                                     ` Mark Wilden
1997-11-28  0:00                                                       ` billg
1997-11-28  0:00                                                       ` John Hannon
1997-11-28  0:00                                                         ` Mark Wilden
1997-11-29  0:00                                                           ` Larry Elmore
1997-11-29  0:00                                                             ` billg
1997-11-29  0:00                                                             ` Mark Wilden
1997-11-30  0:00                                                               ` Larry Elmore
1997-11-30  0:00                                                                 ` Mark Wilden
1997-11-30  0:00                                                                   ` Larry Elmore
1997-12-02  0:00                                                                     ` Mark Wilden
1997-11-29  0:00                                                           ` Dennis Weldy
1997-12-01  0:00                                                           ` John Hannon
1997-11-27  0:00                                               ` Craig Franck
1997-11-27  0:00                                                 ` Mark Wilden
1997-11-28  0:00                                                   ` Jobs (was: " Billy Chambless
1997-11-29  0:00                                                     ` Amy Williams
1997-12-02  0:00                                                 ` Employment ethics (was: Your english sucks, ....) Wes Groleau
1997-12-02  0:00                                                   ` Mark Wilden
1997-11-28  0:00                                               ` Your english sucks, mine is better billg
1997-11-26  0:00                                             ` Peter Seebach
1997-11-28  0:00                                               ` billg
1997-11-28  0:00                                                 ` Peter Seebach
1997-12-01  0:00                                                   ` billg
1997-11-29  0:00                                                 ` Larry Elmore
1997-11-29  0:00                                                   ` billg
1997-11-30  0:00                                                     ` Larry Elmore
1997-12-01  0:00                                                       ` billg
1997-12-01  0:00                                                         ` billg
1997-12-01  0:00                                                     ` Billy Chambless
1997-12-02  0:00                                                     ` Wes Groleau
1997-12-02  0:00                                                       ` wjanik
1997-12-01  0:00                                                   ` billg
1997-11-29  0:00                                             ` Larry Elmore
1997-11-29  0:00                                               ` billg
1997-12-01  0:00                                               ` John English
1997-12-01  0:00                                                 ` Larry Elmore
1997-12-04  0:00                                                 ` Bob O
1997-11-26  0:00                                           ` News postings and job interviews (was: " Billy Chambless
1997-11-24  0:00                                     ` Peter Seebach
1997-11-24  0:00                                       ` Lawrence Kirby
1997-11-24  0:00                                 ` Richard A. O'Keefe
1997-11-27  0:00                                 ` Matt Osborne
1997-12-03  0:00                                 ` ANDREAS LEITNER
     [not found]                             ` <64vl4h$3qh@bgtn <34747E35.79AE@no_spam.ip.edu.com>
1997-11-20  0:00                               ` G Moore (was Re: Your english sucks, mine is better.) Kaz Kylheku
1997-11-21  0:00                                 ` Robert S. White
1997-11-21  0:00                                 ` Kevin Davis Sr.
     [not found]                             ` <64vl4h$3qh@bgtn <652aes$63a$1@news01.micron.net>
1997-11-23  0:00                               ` Your english sucks, mine is better John Winters
1997-11-19  0:00                       ` English SUCKS, Chinese is the only language you need!! Jean-Sebastien Payette
1997-11-19  0:00                     ` Chuck Adams
1997-11-19  0:00                       ` J. W. Rider
1997-11-24  0:00                         ` Richard A. O'Keefe
1997-11-19  0:00                     ` system
1997-11-24  0:00                     ` Richard A. O'Keefe
1997-11-19  0:00                   ` Cynthia & Bill
1997-11-19  0:00                     ` tmt
1997-11-19  0:00                       ` Mark Wilden
1997-11-28  0:00                     ` Ingemar Ragnemalm
1997-11-29  0:00                       ` Danette & Murray Root
1997-12-02  0:00                       ` Morgan Palaeo Associates
1997-12-05  0:00                         ` R.E.Donais
1997-12-03  0:00                       ` Matt Corey
1997-11-19  0:00                   ` Kaz Kylheku
1997-11-21  0:00                   ` Jerry Sams
1997-11-18  0:00                 ` Billy Chambless
1997-11-19  0:00                 ` Mike Smith
     [not found]               ` <64sql2$k0@ <YSQz$BJ98GA.158@news2.ingr.com>
1997-11-19  0:00                 ` John R. Reagan
     [not found]               ` <64sql2$k0@ <3473407e.17757163@lhc.nlm.nih.gov>
1997-11-20  0:00                 ` John R. Reagan
1997-11-18  0:00             ` JCore
1997-11-21  0:00               ` Jerry Sams
     [not found]               ` <01bcf51b$abcea520$0200000a@kld_mcs>
1997-11-19  0:00                 ` system
     [not found]                   ` <01bcf5c3$afbda340$0200000a@kld_mcs>
1997-11-20  0:00                     ` Craig Franck
1997-11-19  0:00                 ` Michael Rubenstein
1997-11-19  0:00                   ` Mark Wilden
1997-11-20  0:00                     ` Michael Rubenstein
1997-11-20  0:00                       ` Peter Seebach
1997-11-20  0:00                         ` Boyd Roberts
1997-11-20  0:00                           ` Larry Elmore
1997-11-20  0:00                         ` Joseph Santaniello
     [not found]                           ` <34746A05.49AA@mWilden.com>
1997-11-20  0:00                             ` system
1997-11-26  0:00                               ` Frans E. Boone
1997-11-26  0:00                                 ` system
1997-11-27  0:00                                   ` Knochenhauer Bernd
1997-11-26  0:00                                 ` CERVANTES OJEDA, Jorge
1997-11-26  0:00                                   ` Kevin Edwards
1997-11-26  0:00                                   ` Peter Seebach
1997-11-25  0:00                     ` Bob Bakh
1997-11-26  0:00                       ` macpar
     [not found]                   ` <01bcf5c4$5916e8c0$0200000a@kld_mcs>
     [not found]                     ` <MPG.ede6533db8ead2b9896b3@news.mindspring.com>
1997-11-20  0:00                       ` Wei Jing Guo
1997-11-20  0:00                       ` Mark Wilden
1997-11-20  0:00                   ` Boyd Roberts
1997-11-19  0:00                 ` John Rickard
1997-11-20  0:00                   ` Christer Gustavsson
1997-11-22  0:00                 ` Ncp268
1997-11-24  0:00                 ` Richard A. O'Keefe
1997-11-25  0:00                 ` chasjt
     [not found]             ` <34745A75.D22E132D@zeelandnet.nl>
1997-11-20  0:00               ` John Rickard
1997-11-19  0:00           ` Mike Smith
1997-10-29  0:00       ` ADA and Pascal SUCK, C,C++, and Java are the only languages " Timo Salmi
1997-10-30  0:00       ` Dr E. Buxbaum
1997-10-30  0:00         ` Steve Ropa
1997-10-30  0:00           ` Kaz Kylheku
1997-11-05  0:00             ` John Stevens
1997-11-06  0:00               ` Kaz Kylheku
1997-11-06  0:00                 ` Steve Ropa
1997-11-07  0:00                 ` Craig Franck
1997-10-30  0:00       ` NOSPAM_f93-eaa
1997-10-30  0:00         ` Ada, Pascal, Eiffel and others Alan Brain
1997-10-30  0:00           ` NOSPAM_f93-eaa
1997-10-30  0:00           ` tmt
1997-10-31  0:00           ` geldridg
1997-11-01  0:00             ` Alan E & Carmel J Brain
1997-10-30  0:00       ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Corey Barcus
1997-10-31  0:00         ` Scott A. Moore
1997-10-31  0:00           ` Shmuel (Seymour J.) Metz
1997-10-31  0:00             ` Scott A. Moore
1997-11-03  0:00               ` Shmuel (Seymour J.) Metz
1997-11-01  0:00             ` Timo Salmi
1997-10-31  0:00       ` Trolling Jerry van Dijk
1997-11-03  0:00         ` Trolling Ron Thompson
1997-11-01  0:00       ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Gary A. Wiltshire
     [not found]         ` <01bcea64$dd48dba0$bf0562cb@dialup.voyager.co.nz>
1997-11-07  0:00           ` Gary A. Wiltshire
1997-11-03  0:00       ` Christopher Eltschka
1997-10-29  0:00     ` ADA SUCKS, C/C++/JAVA RULES!!!! Philip Brashear
1997-10-29  0:00     ` BRIAN LANGENBERGER
1997-10-30  0:00     ` Ed Muldoon
1997-10-30  0:00     ` Jon S Anthony
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Adam Beneschan
1997-10-30  0:00     ` Shmuel (Seymour J.) Metz
1997-10-28  0:00   ` John Bode
1997-11-03  0:00     ` vonhend
1997-10-31  0:00   ` Ken Mays
1997-10-31  0:00     ` Charles R. Lyttle
1997-11-01  0:00       ` NOSPAM_f93-eaa
1997-11-01  0:00         ` Charles R. Lyttle
1997-11-02  0:00           ` David A. Frantz
1997-11-08  0:00             ` Charles W. Johnson
1997-11-08  0:00               ` Charles R. Lyttle
1997-11-03  0:00           ` Nick Leaton
1997-11-06  0:00           ` John Stevens
1997-11-07  0:00             ` Boyd Roberts
1997-11-07  0:00               ` Kaz Kylheku
1997-11-10  0:00               ` Charles W. Kann
1997-11-10  0:00                 ` Jon S Anthony
1997-11-11  0:00                   ` Matt Kennel (Remove 'NOSPAM' to reply)
1997-11-11  0:00                     ` Charles W. Kann
1997-11-11  0:00                       ` Jon S Anthony
1997-11-11  0:00                       ` Brian Rogoff
1997-11-01  0:00   ` Flame bait count 146 (Re: ADA SUCKS, C/C++/JAVA RULES!!!!) Ken Garlington
1997-11-02  0:00     ` Marcus Agrippa
1997-11-02  0:00       ` Carsten Engelmann 
1997-11-02  0:00   ` ADA SUCKS, C/C++/JAVA RULES!!!! Supreme
1997-11-04  0:00     ` Alan E & Carmel J Brain
1997-11-04  0:00   ` Guest
1997-11-12  0:00 ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Larry Elmore
1997-11-12  0:00   ` which languages suck Stanley R. Allen
1997-11-13  0:00     ` Larry Elmore
1997-11-14  0:00     ` Robert Munck
1997-11-14  0:00       ` Russ Lyttle
1997-11-14  0:00       ` Bjorn Vaggen Konestabo
1997-11-13  0:00   ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Jon S Anthony
1997-11-14  0:00     ` Craig Franck
1997-11-12  0:00 ` Samuel T. Harris
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox