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 <86ed8088xe.fsf@linuxsc.com>
Deutsch   English   Français   Italiano  
<86ed8088xe.fsf@linuxsc.com>

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

Path: ...!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Tim Rentsch <tr.17687@z991.linuxsc.com>
Newsgroups: comp.lang.c
Subject: Re: technology discussion =?utf-8?Q?=E2=86=92?= does the world need
 a "new" C ?
Date: Thu, 11 Jul 2024 04:28:13 -0700
Organization: A noiseless patient Spider
Lines: 31
Message-ID: <86ed8088xe.fsf@linuxsc.com>
References: <v66eci$2qeee$1@dont-email.me> <87h6d2uox5.fsf@nosuchdomain.example.com> <v6d779$6rk5$2@dont-email.me> <v6e76u$c0i9$1@dont-email.me> <v6esqm$fian$2@dont-email.me> <v6f7vg$hgam$1@dont-email.me> <20240707164747.258@kylheku.com> <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>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Injection-Date: Thu, 11 Jul 2024 13:28:14 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="63b2cd43183ed9f1034fa7ab191192fd";
	logging-data="2560763"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1/nmxNgxmItfMbotaAHTtCaJePayd/WVU0="
User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.4 (gnu/linux)
Cancel-Lock: sha1:wjxRszBWd/u5DIrkl4v3vtGtucs=
	sha1:HI9iuH8UYWdD2OBgqD7pr18OuVM=
Bytes: 2979

bart <bc@freeuk.com> writes:

> On 10/07/2024 16:48, Tim Rentsch wrote:
>
>> bart <bc@freeuk.com> writes:
>>
>>> I earlier asked this:
>>>
>>> "So if arrays aren't passed by value in C, and they aren't passed
>>> by reference, then how the hell ARE they passed?!"
>>
>> They aren't.  C allows lots of things to be passed as an argument
>> to a function:  several varieties of numeric values, structs,
>> unions, and pointers, including both pointers to object types and
>> pointers to function types.  C does not have a way for a function
>> to take an argument that is either an array or a function.  There
>> is a way to take pointers to those things, but not the things
>> themselves.  Arrays and functions are second-class values in C.
>
> That's a good point.  It's not just arrays that can't be passed by
> value (because the language says so) but also functions (because its
> not meaningful).
>
> Yet, although pointers to arrays and function can be passed (without
> even doing anything special like using &), you are not allowed to say
> that anything is passed by reference in C!

My comment is not about what people are allowed to say.  It's
about what is true.  The truth is, in C, all function arguments
are passed by value.  That statement doesn't depend on how anyone
thinks about it or what they call it.