Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

109
votes
4answers
5k views

Undefined Behavior and Sequence Points

What are "Sequence Points"? What is the relation between Undefined Behaviour and Sequence Points? I often use funny and convoluted expressions like a[++i] = i;, to make myself feel better. Why ...
33
votes
15answers
3k 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 ...
28
votes
3answers
1k 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] = ...
23
votes
6answers
5k views

Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)

int main(int argc, char ** argv) { int i = 0; i = i++ + ++i; printf("%d\n", i); // 3 i = 1; i = (i++); printf("%d\n", i); // 2 Should be 1, no ? volatile int u = 0; u = u++ ...
19
votes
6answers
982 views

Is this code well-defined?

This code is taken from a discussion going on here. someInstance.Fun(++k).Gun(10).Sun(k).Tun(); Is this code well-defined? Is ++k in Fun() evaluated before k in Sun()? What if k is user-defined ...
16
votes
6answers
2k views

Potential Problem in “Swapping values of two variables without using a third variable”

I recently came along this method for swapping the values of two variables without using a third variable. a^=b^=a^=b But when I tried the above code on different compilers, I got different results, ...
13
votes
2answers
121 views

Does bitwise-or guarantee an evaluation ordering?

Say I have this code: unsigned int func1(); unsigned int func2(); unsigned int func3(); unsigned int x = func1() | func2() | func3(); Does C++ guarantee that func1() will be called first, then ...
12
votes
1answer
212 views

Does overloading the comma operator *really* affect the order of evaluation of its operands?

The comma operator guarantees left-to-right evaluation order. [n3290: 5.18/1]: The comma operator groups left-to-right. expression: assignment-expression expression , assignment-expression ...
11
votes
4answers
915 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 ...
11
votes
2answers
664 views

Multiple preincrement operations on a variable in C++(C ?)

Why does the following compile in C++? int phew = 53; ++++++++++phew ; The same code fails in C, why?
10
votes
9answers
2k views

Post-increment and pre-increment in 'for' loop

I want to know why there is no difference in way post and pre increment in 'for' loops are treated. Here is the code for(i=0;i<5;i++) { printf("%d",i); } for(i=0;i<5;++i) { ...
10
votes
5answers
672 views

“x = ++x” is it really undefined?

I am using Coverity Prevent on a project to find errors. It reports an error for this expression (The variable names are of course changed): x= (a>= b) ? ++x: 0; The message is: ...
10
votes
5answers
294 views

Is “*p = ++(*q)” undefined when p and q point to the same object?

after reading about sequence points, I learned that i = ++i is undefined. So how about this code: int i; int *p = &i; int *q = &i; *p = ++(*q); // that should also be undefined ...
10
votes
3answers
490 views

SQL UPDATE order of evaluation

What is the order of evaluation in the following query: UPDATE tbl SET q = q + 1, p = q; That is, will "tbl"."p" be set to q or q + 1? Is order of evaluation here governed by SQL standard? ...
10
votes
7answers
1k views

How do we explain the result of the expression (++x)+(++x)+(++x)?

x = 1; std::cout << ((++x)+(++x)+(++x)); I expect the output to be 11, but it's actually 12. Why?
10
votes
6answers
4k 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' ...
9
votes
6answers
651 views

Difference between i = ++i and ++i [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) What is the difference between i = ++i; and ++i; where i is an integer with value ...
8
votes
2answers
173 views

Is this code well defined?

I suspect the following chaining of functions would result in unspecified sequence according to the C++ standards (assume C++0x). Just want a confirmation and if anyone could provide an explanation, ...
8
votes
3answers
182 views

Is this well defined code?

I'm still slightly confused after reading this topic. Is the following C++ expression *d++ = ~(*d); well defined? Yes, I know compound expressions like this are ugly.. I didn't write it. I see a ...
8
votes
14answers
580 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 ...
6
votes
3answers
172 views

Unevaluated form of a[[i]]

Consider following simple, illustrating example cf = Block[{a, x, degree = 3}, With[{expr = Product[x - a[[i]], {i, degree}]}, Compile[{{x, _Real, 0}, {a, _Real, 1}}, expr] ] ] This is ...
6
votes
5answers
139 views

Javascript order of evaluation

Came across this JS snippet, and I honestly have NO idea of what order things are being evaluated in... Any ideas? Parentheses would be helpful... return point[0] >= -width / 2 - allowance ...
6
votes
7answers
330 views

Function passing arguments in reverse

Here is my function: void abc(char *def, unsigned int w, unsigned int x, unsigned int y, unsigned int z) { printf("val 1 : %d\n", w); printf("val 2 : %d\n", x); printf("val 3 : %d\n", y); ...
6
votes
5answers
225 views

C++ operators question

Given that x = 2, y = 1, and z = 0, what will the following statement display? printf("answer = %d\n", (x || !y && z)); it was on a quiz and i got it wrong, i dont remember my professor ...
6
votes
11answers
935 views

why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||”

Why ++x || ++y && ++z calculate ++x firstly? However,Operator && is higher than ||?
5
votes
2answers
172 views

Pointer and post-increment funny business

What, if anything, is theoretically wrong with this c/c++ statement: *memory++ = BIT_MASK & *memory; Where BIT_MASK is an arbitrary bitwise AND mask, and memory is a pointer. The intent was to ...
5
votes
4answers
136 views

“IF” argument evaluation order?

if(a && b) { do something; } is there any possibility to evaluate arguments from right to left(b -> a)? if "yes", what influences the evaluation order? (i'm using VS2008)
5
votes
5answers
228 views

order of evaluation of operands

In the expression a + b, is a guaranteed to be evaluated before b, or is the order of evaluation unspecified? I think it is the latter, but I struggle to find a definite answer in the standard. Since ...
5
votes
2answers
190 views

Mathematica — why does TreeForm[Unevaluated[4^5]] evaluate the 4^5?

If I give Mathematica the input TreeForm[Unevaluated[4^5]] I expect to see three boxes -- power, 4, and 5. Instead I see a single box with 1024. Can anyone explain?
5
votes
2answers
294 views

Is “int i = x++, j = x++;” legal?

Pretty clear in the title, I think. I'm not entirely sure on this, and I can't find a good answer via the Googles (alas, I haven't committed to the fine art of standards-fu), so I ask: int i = x++, j ...
4
votes
2answers
180 views

Mathematica: Evaluation order during numerical optimisation of black box functions

I am attempting to perform a numerical optimisation of a "black box" function in Mathematica. Schematically it goes like this: NMinimize[{comb[x,y,z], x > 0}, {x,y,z}] where comb[x,y,z] is ...
4
votes
3answers
188 views

Unexpected order of evaluation (compiler bug?) [closed]

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 ...
4
votes
2answers
255 views

Behaviour and Order of evaluation in C# [closed]

Possible Duplicate: C#: Order of function evaluation (vs C) Code snippet: i += ++i; a[++i] = i; int result = fun() - gun(); //statement of similar kind Are their behavior well-defined ...
4
votes
3answers
184 views

What is the order of evaluation in C# and C++?

I have tried the following thing in C# and C++: int a = 5; int b = (a++)+(++a)+(a--)+(--a); I have tried to get result of b in C# and C++. But I got different answer in both. I got 23 in C# and 20 ...
4
votes
4answers
1k views

Explanation of ++val++ and ++*p++ in C

int val = 5; printf("%d",++val++); //gives compilation error : '++' needs l-value int *p = &val; printf("%d",++*p++); //no error Could someone explain these 2 cases? Thanks.
4
votes
3answers
842 views

How do I make a Lazy List in an Eager Language?

I wanted to make a lazy list in Scheme. This is what I have so far. ;; Constructor for Pairs (define (cons-stream a b) (cons a (λ() b))) ;; Selectors (define (car-stream a-stream) (car ...
3
votes
5answers
69 views

Why do most programming languages use eager evaluation for arguments passed to a function?

In most programming languages, arguments passed to a function are evaluated before the function uses them, that is, they are evaluated eagerly. To me, it seems like it would make much more sense to ...
3
votes
2answers
205 views

Call by value in the lambda calculus

I'm working my way through Types and Programming Languages, and Pierce, for the call by value reduction strategy, gives the example of the term id (id (λz. id z)). The inner redex id (λz. id z) is ...
3
votes
2answers
989 views

using multiple criteria in subset function and logical operators in R

If I want to select a subset of data in R, I can use the subset function. I wanted to base an analysis on data that that was matching one of a few criteria, e.g. that a certain variable was either 1, ...
3
votes
1answer
194 views

Logical comparisons: Is left-to-right evaluation guaranteed?

Is left-to-right evaluation of logical comparison operators (&& ||) guaranteed? Let's say I have this: SDL_Event event; if (SDL_PollEvent(&event)) { if (event.type == SDL_QUIT) { ...
3
votes
2answers
237 views

Not able to understand the order of evaluation of operands in the printf() function

Program 1: #include<stdio.h> int main(){ int x = 10; int arr[] = {1,2,3,4,5}; int *p = arr; printf("%d--%d--%d--%d\n",x++,++x,x += *p++,x -= (*(p+=1))--); printf("Final ...
3
votes
4answers
177 views

Why does this C program give unexpected output? [closed]

Possible Duplicate: C programming: is this undefined behavior? #include<stdio.h> main() { int i=5; printf("%d%d%d",i,i++,++i); } my expected output is 556. But when i executed it ...
3
votes
4answers
188 views

Is there specific documentation for the behavior of “i=i--” in gcc?

Once again, our best loved "i=i--" -like issues. In C99 we have: 6.5 Expressions #2: Between the previous and next sequence point an object shall have its stored value modified at most once ...
3
votes
2answers
681 views

Oracle SQL clause evaluation order

In Oracle, which clause types get evaluated first? If I had the following ( pretend .... represent valid expressions and relation names ), what would the order of evaluation be? SELECT ... FROM ...
3
votes
1answer
497 views

Initializer list *argument* evaluation order

So, the C++ standard requires that class members be initialized in the order in which they are declared in the class, rather than the order that they're mentioned in any constructor's initializer ...
2
votes
3answers
64 views

Operator precedence in C [closed]

Possible Duplicate: why "++x || ++y && ++z" calculate "++x" firstly ? however,Operator "&&" is higher than "||" The following program ...
2
votes
3answers
95 views

Evaluation order of overloaded operator |?

5.15 Logical OR operator in the standard says the following: Unlike |, || guarantees left-to-right evaluation; Does this mean somewhere I cannot locate in the standard, | is defined to evaluate ...
2
votes
3answers
377 views

Order of execution in constructor initialization list

Is order of execution in constructor initialization list determinable? I know that members order in a class is the order in which those members will be initialized but if I have scenario like this: ...
2
votes
1answer
150 views

C++ References Puzzle: My output appears reversed. Why?

The output of the following code is "321" without quotes. Why not "123"? #include <iostream> using namespace std; int& inc(int& start) { return ++start; } int main() { int i = 0; ...
2
votes
2answers
191 views

which side of the expression gets evaluated first?

Will the right side of the expression get evaluated first or the left ? void main () { int i = 0 , a[3] ; a[i] = i++; printf ("%d",a[i]) ; }

1 2