Tagged Questions
2
votes
1answer
85 views
Which compiler evaluate left most parameter first
I know the order that function parameters are evaluated is unspecified in C++, see below,
// The simple obvious one.
callFunc(getA(),getB());
Can be equivalent to this:
int a = getA();
int b = ...
1
vote
3answers
61 views
Would unary negate operator come before the function call?
I don't have a compiler handy but this is itching my curiosity. If I have code like this:
float a = 1;
float b = 2;
-a.add(b);
Would it be run as:
add(-a, b);
or
-add(a, b);
4
votes
3answers
303 views
Unexpected order of evaluation (compiler bug?) [duplicate]
Possible Duplicate:
Undefined Behavior and Sequence Points
I'm not sure if this is a gcc bug or not, so I'll ask:
unsigned int n = 0;
std::cout << n++ << n << ++n;
gcc ...
21
votes
6answers
8k views
Compilers and argument order of evaluation in C++
Okay, I'm aware that the standard dictates that a C++ implementation may choose in which order arguments of a function are evaluated, but are there any implementations that actually 'take advantage' ...