From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 11232c,bde6489d2ec79329 X-Google-Attributes: gid11232c,public X-Google-Thread: 103376,9245b8db9abd376c X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-16 22:50:21 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!netnews.com!xfer02.netnews.com!newsfeed2.earthlink.net!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!newsread1.prod.itd.earthlink.net.POSTED!not-for-mail From: "Eric G. Miller" Subject: Re: Out parameters in a function Newsgroups: comp.lang.ada,misc.misc Message-ID: References: <4519e058.0204150709.55c94dfb@posting.google.com> <3cbbe583.3628858@news.demon.co.uk> <3cbc3f05.26543327@news.demon.co.uk> <3CBCFCC8.6000206@worldnet.att.net> User-Agent: Pan/0.11.2 (Unix) Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Comment-To: "Jim Rogers" Date: Wed, 17 Apr 2002 05:50:18 GMT NNTP-Posting-Host: 216.119.45.123 X-Complaints-To: abuse@earthlink.net X-Trace: newsread1.prod.itd.earthlink.net 1019022618 216.119.45.123 (Tue, 16 Apr 2002 22:50:18 PDT) NNTP-Posting-Date: Tue, 16 Apr 2002 22:50:18 PDT Organization: EarthLink Inc. -- http://www.EarthLink.net Xref: archiver1.google.com comp.lang.ada:22637 misc.misc:6436 Date: 2002-04-17T05:50:18+00:00 List-Id: In <3CBCFCC8.6000206@worldnet.att.net>, Jim Rogers wrote: > Well, almost. C does not have a boolean type. C (since its first Umm, mostly true. C99 has stdbool.h, but it's still not really a builtin type of the language (int macros ...). And curiously, C can return structs containing arrays, but can't return arrays (as arrays are not "lvalues"). Boggle...