选择题   以下程序的运行结果为______。
    #define A(x,y)x*y-x/y
    main()
    {int a=5,b=2,y;
    y=A(a+b,a-b);
    printf('%d\n',y);
    }
 
【正确答案】 A
【答案解析】