sysy-data/functional_c/sy/47_hex_oct_add.sy

8 lines
122 B
Plaintext
Raw Normal View History

2024-04-14 22:20:29 +08:00
#include "sylib.h"
//test add of hex and oct
int main(){
int a, b;
a = 0xf;
b = 0xc;
return a + b + 075;
}