CompilerSysY/testcases/functional/47_hex_oct_add.sy
2023-04-30 00:57:11 +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;
}