SysYTestcases/function_2021fin/055_hex_oct_add.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +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;
}