sysy/functional_c/sy/37_op_priority3.sy

8 lines
139 B
Plaintext
Raw Normal View History

2024-04-14 22:20:29 +08:00
//test the priority of unary operator and binary operator
int main(){
int a, b;
a = 10;
b = 30;
return a - -5 + b + -5;
}