源代码:
#include<stdio.h> #define 主函数 main //无参宏定义 #define m(y) (2*y+y) //有参宏定义 int 主函数(int argc, char* argv[]) { printf("%d",m(2)); return 0; }
效果图: