#define CACL(x) x * 3 + 4 n = 1; printf("%d\n", CALC(n+2));
#define CACL(x) (x) * 3 + 4
例) #define CACL(x, y, z) (x) * 3 + 4 + (y) + (z)