show/hide this revision's text 3 edited tags

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.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Priority of C++ operators "&" and "->"

Given the following:

&row->count

Would &(row->count) be evaluated or (&row)->count be evaluated in C++?