Given
!=
==
&&

which are used within one conditional clause, how can I find out which one will be evaluated first ?

e.

if(c==a!=b&&c!=b)
//dosomething

Thank you