Deutsch   English   Français   Italiano  
<v6rsr0$34t3j$2@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: bart <bc@freeuk.com>
Newsgroups: comp.lang.c
Subject: =?UTF-8?Q?Re=3A_technology_discussion_=E2=86=92_does_the_world_need?=
 =?UTF-8?B?IGEgIm5ldyIgQyA/?=
Date: Fri, 12 Jul 2024 19:32:00 +0100
Organization: A noiseless patient Spider
Lines: 29
Message-ID: <v6rsr0$34t3j$2@dont-email.me>
References: <v66eci$2qeee$1@dont-email.me> <v6gl83$s72a$1@dont-email.me>
 <v6h8ao$ur1v$1@dont-email.me> <v6jhk3$1drd6$1@dont-email.me>
 <v6jiud$1dsjb$1@dont-email.me> <877cdur1z9.fsf@bsb.me.uk>
 <v6joi4$1epoj$1@dont-email.me> <871q42qy33.fsf@bsb.me.uk>
 <v6k6i0$1h4d3$1@dont-email.me> <87ed82p28y.fsf@bsb.me.uk>
 <v6m03l$1tf05$1@dont-email.me> <87r0c1nzjj.fsf@bsb.me.uk>
 <v6m716$1urj4$1@dont-email.me> <86ikxd8czu.fsf@linuxsc.com>
 <v6mggd$20g3f$1@dont-email.me> <20240710213910.00000afd@yahoo.com>
 <v6mm02$21cpb$1@dont-email.me> <865xtc87yo.fsf@linuxsc.com>
 <v6ol14$2fdrj$1@dont-email.me> <87msmnu5e3.fsf@nosuchdomain.example.com>
 <v6pdcf$2jijk$1@dont-email.me> <87frsfu0yp.fsf@nosuchdomain.example.com>
 <v6pfo3$2jijk$2@dont-email.me> <v6qgbt$2t6p7$1@dont-email.me>
 <v6r2im$30a9n$1@dont-email.me> <v6r807$317bp$1@dont-email.me>
 <v6rrok$34t3j$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Fri, 12 Jul 2024 20:32:01 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="70309d0afdade4e9fabfb798d5d70205";
	logging-data="3306611"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1/hhgIOaYJFRK1RiExVzAbP"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:0XbNBEodMMIW3PsSqlwp+gu2j/s=
In-Reply-To: <v6rrok$34t3j$1@dont-email.me>
Content-Language: en-GB
Bytes: 3165

On 12/07/2024 19:13, bart wrote:
> On 12/07/2024 13:36, David Brown wrote:
> 
>> One person's private sort-of-C compiler is of no more relevance to the 
>> C community than one person's private language.  You are welcome to 
>> make as many non-conforming changes to your own tools as you like, but 
>> they do not make a difference to C.  No one else will ever use your 
>> tool, so no one else will ever care about any incompatible changes you 
>> make to it.  If /you/ are happier having such changes in your tools, 
>> then that is great for you.
> 
> Jesus, you just can't resist putting the boot in at every opportunity 
> and being incredibly patronising, can you?
> 
> I made the tweak to see how hard it would be to detect value-arrays 
> declared in parameter list (it was very easy), and what the consequences 
> would be on existing code (significant).
> 
> The example I posted showed a type (const char* x[]) where there was no 
> advantage to having that value array notation. Using 'const char**' 
> would be a more accurate description of the actual parameter type.

Incidentally if sizeof(x) is used, gcc will about it if using 'char* 
x[]', and not with 'char** x'.

I wonder why, since after all EVERYBODY who uses C understands what they 
are doing.