sysy-data/functional/sy/46_hex_defn.sy

6 lines
78 B
Plaintext
Raw Normal View History

2024-01-09 19:48:14 +08:00
// test hexadecimal define
int main(){
int a;
a = 0xf;
return a;
}