知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
定義巨集
1樓
#include <stdio.h>
#include <stdlib.h>

#define get_max(a, b) (a>=b?a:b)

int main()
{
    int a, b, c, x, y;

    x= 123; y= 1234;
    c= get_max(x, y);
    
    printf("\n c= %d \n", c);
    system("pause");
    return 0;
}