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.
|
|
Given the following:
Would &(row->count) be evaluated or (&row)->count be evaluated in C++? EDIT: Here's a great link for C++ precedence.
|
||||
|
|
|
As far as precedence rules go, I've always liked the one put forth by Steve Oualline in "Practical C":
|
||||
|
|
|
C operator precendence is explained here As per the table, -> is higher priority than the & operator, so it's &(row->count) |
||
|
|
|
|
This is already asked. But here is a link. Edit: Ok this question is very similar. And possibly there is an other one. |
|||
|
|
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. |
||
|
|
|
|
&(row->count) |
||
|
|
|
|
-> has a higher priority than & (address of). So your expression would be evalutated as &(row->count) |
||
|
|