#include<stdio.h> #include<conio.h> #define PROD(x) (x*x) void main() { clrscr(); int p=3,k; k=PROD(p+1); //here i think value 3+1=4 would be passed to macro printf("\n%d",k); getch(); }
在我看来,输出应该是16,但我得到7.
谁能告诉我为什么?
解决方法
预处理器扩展PROD(p 1)如下:
k = (p+1*p+1);
当p = 3时,这给出:3 1 * 3 1 = 7.
您应该按如下方式编写#define:
#define PROD(x) ((x)*(x))