void f() { printf("function\n"); }#define f() printf("macro\n")
int main() { f(); // macro (f)(); // function
return 0;}
函数名加括号即可!