rustic-sysy/sysy_sets/37_op_priority3.sy

7 lines
138 B
Plaintext
Raw Normal View History

2024-08-27 18:13:31 +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;
}