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

7 lines
97 B
Plaintext
Raw Normal View History

2024-04-14 22:20:29 +08:00
#include "sylib.h"
// test hexadecimal define
int main(){
int a;
a = 0xf;
return a;
}