sysy/functional_c/sy/46_hex_defn.sy

7 lines
79 B
Plaintext

// test hexadecimal define
int main(){
int a;
a = 0xf;
return a;
}