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 connectionsPath: ...!news.nobody.at!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Ben Bacarisse Newsgroups: comp.lang.c Subject: Re: Top 10 most common hard skills listed on resumes... Date: Sun, 08 Sep 2024 16:39:02 +0100 Organization: A noiseless patient Spider Lines: 32 Message-ID: <87zfoikve1.fsf@bsb.me.uk> References: <87mskwy9t1.fsf@bsb.me.uk> <875xrkxlgo.fsf@bsb.me.uk> <87o75bwlp8.fsf@bsb.me.uk> <871q27weeh.fsf@bsb.me.uk> <20240829083200.195@kylheku.com> <87v7zjuyd8.fsf@bsb.me.uk> <20240829084851.962@kylheku.com> <87mskvuxe9.fsf@bsb.me.uk> <20240908115827.00007521@yahoo.com> MIME-Version: 1.0 Content-Type: text/plain Injection-Date: Sun, 08 Sep 2024 17:39:05 +0200 (CEST) Injection-Info: dont-email.me; posting-host="9a14ca7ed8698a09093fd1d5b7133544"; logging-data="2085531"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX195Q/9MGwzQmpLRr45NrD170bnG+rvVu10=" User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:vlqAO/ntN2iyMF606zvKdS3QBZ8= sha1:RtNHWF/+LH/HkN025MueowuiuaM= X-BSB-Auth: 1.a091aa0067cf7988315b.20240908163902BST.87zfoikve1.fsf@bsb.me.uk Bytes: 2652 Bart 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. > A is a simple variable; C does not define the term "simple variable" so presumably you define it to be any named object that /can/ appear on the LHS of a simple assignment -- a sort of "no true Scots-variable". > X represents a term of any complexity, and Y is any > expression. I can think of at least one expression form for X that contradicts this claim. It would be great if C had simple rules, but it doesn't. You could have started by saying something about the most comment forms of assignment being those you list, and that X can be almost any term, but the risk of making absolute claims is that people (like me) will look into them. > (In C, the middle two are really the same thing.) -- Ben.