Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <vbnb6t$2fqep$2@dont-email.me>
Deutsch   English   Français   Italiano  
<vbnb6t$2fqep$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: Re: Top 10 most common hard skills listed on resumes...
Date: Mon, 9 Sep 2024 18:27:58 +0100
Organization: A noiseless patient Spider
Lines: 26
Message-ID: <vbnb6t$2fqep$2@dont-email.me>
References: <vab101$3er$1@reader1.panix.com> <87mskwy9t1.fsf@bsb.me.uk>
 <vanq4h$3iieb$1@dont-email.me> <875xrkxlgo.fsf@bsb.me.uk>
 <vapitn$3u1ub$1@dont-email.me> <87o75bwlp8.fsf@bsb.me.uk>
 <vaps06$3vg8l$1@dont-email.me> <871q27weeh.fsf@bsb.me.uk>
 <20240829083200.195@kylheku.com> <87v7zjuyd8.fsf@bsb.me.uk>
 <20240829084851.962@kylheku.com> <87mskvuxe9.fsf@bsb.me.uk>
 <vaq9tu$1te8$1@dont-email.me> <vbci8r$1c9e8$1@paganini.bofh.team>
 <vbcs65$eabn$1@dont-email.me> <vbekut$1kd24$1@paganini.bofh.team>
 <vbepcb$q6p2$1@dont-email.me> <vbj6ii$1q6mh$1@dont-email.me>
 <20240908115827.00007521@yahoo.com> <vbju6l$1sqao$2@dont-email.me>
 <87zfoikve1.fsf@bsb.me.uk> <865xr4kc4p.fsf@linuxsc.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 09 Sep 2024 19:27:57 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="f78fc89e66291041ea37870e95b59fc2";
	logging-data="2615769"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX19uwzOvUIXmk0yklUxw1E2i"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:fzAPYd6+tckYmjREHvckV9m8gxs=
In-Reply-To: <865xr4kc4p.fsf@linuxsc.com>
Content-Language: en-GB
Bytes: 2584

On 09/09/2024 17:47, Tim Rentsch wrote:
> Ben Bacarisse <ben@bsb.me.uk> writes:
> 
>> Bart <bc@freeuk.com> writes:
>>
>>> In language like C, the LHS of an assignment is one of four categories:
>>>
>>>    A = Y;         // name
>>>    *X = Y;        // pointer
>>>    X[i] = Y;      // index
>>>    X.m = Y;       // member select
>>
>> I can think of three others.  There may be more.
> 
> Yes, very good.  I count four or five, depending on what
> differences count as different.

Well, I implement only three of those (ie. of my four) in my code 
generator. (X[i] gets reduced to *X before this point.)

If there are any other categories, then they've never been encountered 
in any of the C projects I've tested.

(My language has nearly 10 categories, including one where the dual 
results of a 'divrem' op is assign to two LHS values. Are the extra ones 
in C anything like that, eg. to do with 'complex' assignment?)