SysY2022/test_cases/functional/46_hex_defn.sy

6 lines
78 B

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