NO

Author Topic: About variable.  (Read 4538 times)

sec

  • Guest
About variable.
« on: September 18, 2004, 06:08:04 AM »
I tried to run executeable file after compiled this liltle code with three compilers (GNUC, Microsoft C, PellesC) and have three differents. I think Microsfot C is correct but ?
Code: [Select]
i = 0
i = i++

or
i = i++ + i++

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
About variable.
« Reply #1 on: September 18, 2004, 04:48:53 PM »
See comp.lang.c FAQ here:
http://www.eskimo.com/~scs/C-faq/faq.html

(question 3.3)

Pelle
/Pelle

Holger Buick

  • Guest
About variable.
« Reply #2 on: September 18, 2004, 11:54:34 PM »