1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#define x(y) ((y) + 1) int main() { int x; int y; y = 0; x = x(y); if(x != 1) return 1; return 0; }