rustic-sysy/sysy_sets/47_hex_oct_add.sy

7 lines
103 B
Plaintext
Raw Normal View History

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