SysYTestcases/functional_2021/054_hex_defn.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

6 lines
78 B
Plaintext

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