lang-bootstrap/05/tcc-0.9.27/tests/tests2/84_hex-float.c
2022-02-18 12:36:57 -05:00

12 lines
255 B
C

extern int printf(const char *format, ...);
#define ACPI_TYPE_INVALID 0x1E
#define NUM_NS_TYPES ACPI_TYPE_INVALID+1
int array[NUM_NS_TYPES];
#define n 0xe
int main()
{
printf("n+1 = %d\n", n+1);
// printf("n+1 = %d\n", 0xe+1);
}