vote up 2 vote down star

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.

flag

50% accept rate
Why don't you just try and see what happens? – JesperE Sep 30 '08 at 20:14
I thought there wasn't a similar question asked that has been asked .. and it would be a good question to add to stackoverflow. – stung Sep 30 '08 at 20:28

7 Answers

vote up 6 vote down check

&(row->count)

link|flag
vote up 13 vote down

As far as precedence rules go, I've always liked the one put forth by Steve Oualline in "Practical C":

There are fifteen precedence rules in C (&& comes before || comes before ?:). The practical programmer reduces these to two:

1) Multiplication and division come before addition and subtraction.

2) Put parentheses around everything else.

link|flag
&& before || and & (binary) before | is just as intuitive as * before +, no? – Aaron Oct 1 '08 at 5:50
I won't argue - it's just a nice rule of thumb for me. I think that using Pascal way back when screwed me up on operator precedence because the logical and/or operators had a higher precedence than equality/relational operators. Screwed me up for life. – Michael Burr Oct 1 '08 at 6:53
vote up 1 vote down

C operator precendence is explained here

As per the table, -> is higher priority than the & operator, so it's &(row->count)

link|flag
vote up 1 vote down

This is already asked. But here is a link.

Edit: Ok this question is very similar. And possibly there is an other one.

link|flag
Can you provide a link to that question? Could this question be better worded to avoid the duplicated nature of this post? – stung Sep 30 '08 at 20:19
I can search for the question. – Gamecat Sep 30 '08 at 20:25
vote up 1 vote down

May I suggest that you resolve such questions using a test programme? That has the advantage that you will know for sure that the answer is correct for your implementation, and you are not exposed to the risk of badly answered questions.

link|flag
vote up 0 vote down

&(row->count)

link|flag
vote up 0 vote down

-> has a higher priority than & (address of). So your expression would be evalutated as &(row->count)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.