宏定义 三个数最大值

#define MAX(a,b,c) (a>b?(a>c?a:c):(b>c?b:c))

原文地址:https://www.cnblogs.com/guangleijia/p/4758094.html