填空题

有以下程序:
#include <stdio.h>
main()
int t=1,i=5;
for(;i>=0;i--) t*=i;
printf("%d\n",t);
执行后的输出结果是 【8】

【参考答案】

0