大牛们能帮我看下哪错了吗
#include <stdio.h>#include <string.h>void func(int *n){ while((*n)--); printf("%d",++(*n));int main(){ int a=100; func(&a); return 0;}