include <stdio.h>#include <stdlib.h>#define LOG() printf("func here %s\n", __FUNCTION__)void func(){LOG();}int main(){LOG();func();//system("pause");}