填空题

下列程序的运行结果是______。
#include<stdio.h>
longfunc(int x)
long p;
if(x==0‖x==1)
return(1) ;
p=x*func(x-1) ;
return(p);
main()
printf("%d\n",func(4) );

【参考答案】

X