Sujet : Re: 80386 C compiler
De : Ros (at) *nospam* invalid.invalid (Rosario19)
Groupes : comp.lang.cDate : 25. Nov 2024, 22:14:06
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <qrp9kjd09n2v3srmabqccmnsbr1r6nkm2m@4ax.com>
References : 1 2 3 4
User-Agent : Forte Free Agent 1.93/32.576 English (American)
On Mon, 25 Nov 2024 18:23:58 -0000 (UTC), Kaz Kylheku wrote:
void fn(int a)
{
int x[3] = { foo(), bar(), a }; /* not in C90 */
is in the above foo() called before bar()?
void fn(int a)
{
int x[3];
x[0]=foo(); x[1]=bar(); x[2]=a;
this would be ok with every C compiler