10
votes
11answers
1k views
C++ Mystery
Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out.
int i = 5;
i = ++i + ++i;
cout<<i;
4
votes
6answers
290 views
int[] arr={0}; int value = arr[arr[0]++]; Value = 1?
Today I came a cross an article by Eric Lippert where he was trying to clear the myth between the operators precedence and the order of evaluation. At the end there were two code s …
2
votes
9answers
495 views
C# conditional AND (&&) OR (||) precedence
We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that …
2
votes
1answer
310 views
Prolog operator precedence and rules matching
I have the next two facts loaded in my prolog interpreter:
foo(U+V,1).
foo(U*V,2).
Now I try the next queries with that results:
foo(x*x+x,R). --> R = 1
foo(x+x*x,R). --& …
2
votes
7answers
374 views
How do I parenthesize an expression programmatically?
I have an idea for a simple program to make that will help me with operator precedence in languages like C. The most difficult part of this is parenthesizing the expression. For ex …
1
vote
16answers
448 views
Should One Know Operator Precedence thoroughly?
Should the programmer be aware of operator precedence thoroughly?
Using braces to group expressions should be okay, isn't? I always uses braces to be on safer side. And when asked …
0
votes
2answers
130 views
dereference and advance pointer in one statement?
I'm reading from a byte array as follows:
int* i = (int*)p;
id = *i;
i++;
correct me if I'm wrong, but ++ has precedence over *, so is possible to combine the *i and i++ in the …
0
votes
7answers
293 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 beca …
