CompilerSysY/testcases/functional_test/045_op_priority3.sy
2023-05-08 21:15:52 +08:00

7 lines
138 B
Plaintext

//test the priority of unary operator and binary operator
int main(){
int a, b;
a = 10;
b = 30;
return a - -5 + b + -5;
}