zero-parser/sysy_sets/47_hex_oct_add.sy

7 lines
103 B
Plaintext
Raw Normal View History

2024-11-19 19:08:05 +08:00
//test add of hex and oct
int main(){
int a, b;
a = 0xf;
b = 0xc;
return a + b + 075;
}