#include #define TWICE(x) (x+x) int twice(int x) { return x + x; } int main(void) { int x = 0; printf("TWICE(++x)/2 = %d\n", TWICE(++x)/2); printf("twice(++x)/2 = %d\n", twice(++x)/2); printf("TWICE(++x)/2 = %d\n", TWICE(++x)/2); printf("twice(++x)/2 = %d\n", twice(++x)/2); return 0; }