阅读背景:

为什么在我的代码中使用宏导致错误,我该如何解决?

来源:互联网 

I wrote this code:

我写了这段代码:

#include <stdio.h>

#define fctrl(N) ( (N==1)? (N) : (N*fctrl(N-1)) )

int main()
{
    int m,n=7;
    m = fctrl(n);
    printf("fctrl is %d\n",m);
    return 0;
}
#include <stdio



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: