http://www.difranco.net/cop2220/op-prec.htm
Good luck!
**EDIT**
Ok, I just re-read what you said: do you mean you want to check a C file and figure out which operators come first in that? If so, you would have to read the C file into a buffer, tokenize it, and then run the tokens through an algorithm to find out which comes first. No really fast way to do it though, sadly.
Example:
c1-->ec2
Equals (token list with numbers assigned to each token and token type):
0: ( (operator)
1: i (variable)
2: >= (operator)
3: 0 (number)
4: ) (operator)
5: && (operator)
6: ( (operator)
7: i (variable)
8: < (operator)
9: 10 (number)
10: ) (operator)
Then, if you leave everything except the operators in the order they appear, this code snippet would be executed in the following order (just using token numbers here):
0,1,2,3,4,6,7,8,9,10,5
Like this:
Do this: i>=0 (relational logic)
Then this i<10 (relational logic)
Then this: && (logical AND)
It gets pretty complicated, but it's doable. This doesn't happen to be for z8-gcc, does it?