picoc/tests/12_hashdefine.c

7 lines
126 B
C
Raw Normal View History

#define FRED 12
#define BLOGGS(x) (12*(x))
printf("%d\n", FRED);
//printf("%d, %d, %d\n", BLOGGS(1), BLOGGS(2), BLOGGS(3));