Re: [cc65]Unusuall?

Date view Thread view Subject view

From: Bryan Pope (bpope_at_wordstock.com)
Date: 2001-01-02 20:44:28


> > Hello,
> >
> > > Or, better,
> > >
> > > while ((c = *value) != 39 && c != 62) {
> > > <stuff>
> > > }
> >
> > Forgive me, but if my memory serves me right, C (at least pre-ANSI) does NOT
> > define the order in which this will be evaluated, so the second part (c!=62)
> > might be evaluated BEFORE the first part with the assignment, in that case,
> > this will NOT evaluate to the expected condition.

I only just joined this list.  Where is the rest of the code?  Since you have
to make sure that c is assigned *value then you could do this:

c = *value;
while (c != 39 && c != 62) {
	(stuff)
	<I am assuming value is pointed somewhere else in this loop>
	c = *value;
}

Cheers,

Bryan
----------------------------------------------------------------------
To unsubscribe from the list send mail to majordomo_at_musoftware.de with
the string "unsubscribe cc65" in the body(!) of the mail.


Date view Thread view Subject view

This archive was generated by hypermail 2.1.3 : 2001-12-14 22:05:37 CET