C程序输出令人困惑

前端之家收集整理的这篇文章主要介绍了C程序输出令人困惑前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#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))
原文链接:https://www.f2er.com/c/117614.html

猜你在找的C&C++相关文章