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 <stdioI 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