1

Possible Duplicate:
Order of evaluation in C++ function parameters

In C++ is the order of arguments evaluation defined or undefined?

My friend said it's defined , and like a STACK, been pushed from rightmost to left. Is this right or not?

Thank you

Community
  • 1
  • 1
Don Lun
  • 2,717
  • 6
  • 29
  • 35

1 Answers1

1

No it is not defined by the C++ standard.

Alok Save
  • 202,538
  • 53
  • 430
  • 533