填空题

下列程序的输出结果是______。
void fun(int *n)

while((*n)--);
printf("%d",++(*n));

void main()

int a=100;
fun(&a);

【参考答案】

0