This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Bug in gcc


On Thu, Feb 13, 2003 at 11:16:38AM -0500, Swaminathan Venkatakrishnaprasad wrote:
> Hello,
> 
> The program below when excuted yields incorrect result:
> 
> main()
> {
>    int A,B,C;
> 
>    A=0; B=1;C=2;
> 
>    A = B++ + B++ + C++ + C++;

You are modifying C twice, this is undefined behaviour.

Ciao, Marcus


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]