Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
150 views

If the value of an uninitialized variable shouldn't affect the value of an expression, is it still UB?

This is a follow-on from a discussion, which I think deserves a question of its own. Basically, is the result of this undefined? int x; int y = 1 || x; There are two "common-sense" arguments here: ...
6
votes
2answers
119 views

Why do STL-Datastructures need fully defined types

When looking for a solution to this question, I found the this thread on another forum, which says that the standard requires all template parameters to STL-Datastructure to be fully defined. This ...
5
votes
4answers
267 views

Bug in quicksort example (K&R C book)?

This quicksort is supposed to sort "v[left]...v[right] into increasing order"; copied (without comments) from The C Programming Language by K&R (Second Edition): void qsort(int v[], int left, int ...
1
vote
3answers
329 views

Expression x[--i] = y[++i] = z[i++], which is evaluated first?

When the evaluation of l-value precedes the evaluation of r-value and the assignment also returns a value, which of the following is evaluated first? int i = 2; int x[] = {1, 2, 3}; int y[] = {4, 5, ...