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

7 lines
103 B
Plaintext

//test add of hex and oct
int main(){
int a, b;
a = 0xf;
b = 0xc;
return a + b + 075;
}