Tagged Questions
6
votes
6answers
314 views
a += a++ * a++ * a++ in Java. How does it get evaluated?
I came across this problem in this website, and tried it in Eclipse but couldn't understand how exactly they are evaluated.
int x = 3, y = 7, z = 4;
x += x++ * x++ * x++; // gives x = 63
...
4
votes
2answers
197 views
Operator precedence and Associativity in C/C++
Please note, that this has nothing to do with Operator Precedence.. () and ++ , Undefined Behavior and Sequence Points , Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, ...
-3
votes
4answers
316 views
Can Javascript break mathematical rules? [closed]
I was taught that in maths we evaluate things, with the acronym BODMAS
Brackets, Orders(powers), Division, Multiplication, Addition, Subtraction.
I understand that in Javascript, * and / have equal ...
58
votes
12answers
4k views
Why is $a + ++$a == 2?
If I try this:
$a = 0;
echo $a + ++$a, PHP_EOL;
echo $a;
I get this output:
2
1
Demo: http://codepad.org/ncVuJtJu
Why is that?
I expect to get this as an output:
1
1
My understanding:
...
40
votes
15answers
5k views
a = (a++) * (a++) gives strange results in Java [closed]
I'm studying for the OCPJP exam, and so I have to understand every little strange detail of Java. This includes the order in which the pre- and post-increment operators apply to variables. The ...
1
vote
5answers
2k views
Precedence of Logical Operators in C [duplicate]
Possible Duplicate:
why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||”
If you look ...
33
votes
3answers
3k views
What are the rules for evaluation order in Java?
I am reading some Java text and got the following code:
int[] a = {4,4};
int b = 1;
a[b] = b = 0;
In the text, the author did not give a clear explanation and the effect of the last line is: a[1] = ...
16
votes
4answers
3k views
Operator Precedence vs Order of Evaluation
These 2 are highly commonly used terms in programming and extremely important for a programmer to know. And as far as i understand these 2 concepts are tightly bound, one cannot do without the other ...
9
votes
14answers
893 views
Which side (left or right) of && (and) operator evaluated in C++
Which order is the and && operator evaluated
For example the following code
if (float alpha = value1-value2 && alpha > 0.001)
//do something
threw an exception that alpha is ...
2
votes
8answers
897 views
Understanding evaluation of expressions containing '++' and '->' operators in C
Consider this example:
struct {
int num;
} s, *ps;
s.num = 0;
ps = &s;
++ps->num;
printf("%d", s.num); /* Prints 1 */
It prints 1.
So I understand that it is because according to ...