Ok, I'm wondering what this will do.

Code:
int x=1, b=2;

if(x == 1 && b == 2 || x == 2 && b == 2) {
 //actions;
}
Will the actions execute? Does c++ consider ands before ors, or vice versa?