Date: Fri, 25 Apr 1997 13:07:56 +0200 (MET DST) From: Miguel Murillo To: djgpp AT delorie DOT com Subject: Re: It's a Bug? Please. In-Reply-To: <5jnuq1$fle@vidar.diku.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk Thanks : Morten,Joseph B., Brent, George and Salvador Sorry e-mail-error: But It's bizarre: #include #include int main() { int a,b; a=0; (++a)++; printf("\nEl valor de a =%d",a); } ===> a=2 Answer: > This is undefined in C. Don't even try to do more than one > modification to the same memory location within one expression. > Yes, It's is true.