Tagged Questions

15
votes
4answers
235 views

C++ ternary conditional and assignment operator precedence

I'm confused about direct assignment and ternary conditional operators precedence. This code illustrates my confusion : #include<stdio.h> int main(void) { int j, k; j = k = 0; (1 ? ...
12
votes
9answers
2k 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;
11
votes
5answers
311 views

Chaining Bool values give opposite result to expected

Unthinkingly I wrote some code to check that all the values of a struct were set to 0. To accomplish this I used: bool IsValid() { return !(0 == year == month == day == hour == minute == second); ...
11
votes
4answers
913 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 ...
8
votes
1answer
151 views

operator precedence (void* before bool?)

When answering this question I made some research which really confuses me. I noticed that two ifstreams that succesfully open are not equal but two ifstreams that fail are. At first i checked ...
8
votes
1answer
147 views

Operator precedence for “<<” and “++” in VS2008 with optimization

I'm stuck with a weird VS2008 C++ issue, that looks like operator precedence is not respected. My question is what is the output of this: int i = 0; std::cout << ((i != 0) ? "Not zero " : ...
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 ...
7
votes
3answers
207 views

operator precedence, which result is correct? [closed]

Possible Duplicate: Undefined Behavior and Sequence Points What is the value of x after this code? int x = 5; x = ++x + x++; In Java, the result is 12 but in C++, the result is 13. I ...
6
votes
2answers
85 views

Why is there a level of precedence for operators such as static_cast?

According to cppreference.com, the C++ static_cast operator's level of precedence is 2. Why are those levels even defined? I can't think of any reason. Can anyone provide an example?
6
votes
2answers
198 views

What is the precedence of the meta-operator …?

What is the precedence of the meta-operator ... whose job is to unpack template type parameter packs? I imagine it's pretty low, but how low is it? The C++ standard says: The precedence of ...
3
votes
1answer
77 views

Operator precedence in `copy` implementation example

I read a few lines of code here where it looks to me like there should be some parentheses. template<class InputIterator, class OutputIterator> OutputIterator copy ( InputIterator first, ...
3
votes
4answers
666 views

In what order does evaluation of post-increment operator happen?

Given std::vector<CMyClass> objects; CMyClass list[MAX_OBJECT_COUNT]; Is it wise to do this? for(unsigned int i = 0; i < objects.size(); list[i] = objects.at(i++)); Or should I expand ...
3
votes
7answers
2k views

Priority of C++ operators “&” and “->”

Given the following: &row->count Would &(row->count) be evaluated or (&row)->count be evaluated in C++? EDIT: Here's a great link for C++ precedence.
2
votes
5answers
112 views

Order of evaluation of expression

I've just read that order of evaluation and precedence of operators are different but related concepts in C++. But I'm still unclear how those are different but related?. int x = c + a * b; // 31 ...
1
vote
5answers
130 views

Why I can't define operator= with non-reference return type?

Operator= in C++ inside a class is being declared like this: MyType & operator=(const MyType & rhs); It is reasoned like it is necessary for chaining. But, as operator= has right ...
1
vote
4answers
375 views

Operator precedence in j = j++ * ++j [closed]

Possible Duplicates: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) How do we explain the result of the expression (++x)+(++x)+(++x)? Why does the ...
1
vote
8answers
234 views

Member access differences

can someone tell me what is the different between (*ptr).field and ptr->field? I know it connect somehow to static and dynamic linking, but i dont know what is it. can someone tell me the differnet ...
0
votes
6answers
75 views

Complex if condition

In a legacy code, I have encountered the following expression: if (!m_bMsOcs && bChannelData || m_bMsOcs && !bStunType) I guess the intended condition was if ((!m_bMsOcs && ...
0
votes
1answer
71 views

What would this snippet display? [closed]

Possible Duplicates: Undefined, unspecified and implementation-defined behavior Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc...) What's the correct result ...
0
votes
0answers
79 views

strange declaration result in c++ [closed]

Please help me out in following declaration program. int main() { int a = (a = 3) + (a = 5) + (a = 4); std::cout<< "a = " << a << std :: endl; return 0; } The output ...
0
votes
3answers
56 views

problem with passing custom array to function (c++)

I have an array of type T which I pass as a pointer parameter to a function. The problem is that I can't write new data to this array properly, without getting memory violation at the second try. In ...
0
votes
7answers
365 views

Operator Precedence.. () and ++

Salute.. I have an unusual problem. Here in this table in MSDN library we can see that precedence of () is higher than ++ (Pre-increment) . but when I run this code, it seems that precedence of ...
0
votes
3answers
210 views

Take care about precedence of * and ++ in C/C++, (and any keystroke when programming) [closed]

Somebody write this function void strToUpper(char *p) { while (*p) { *p = TOUPPER(*p); *p++; //<-- Line to pay attention } } I asked, why do you put the * before p++? ...