问答题

int f(int n) {static int m=5: return++m+n: } main() {int i; for(i=0;i<3;i++)printf("%5d",f(i)); printf("\n"); }

【参考答案】

6 8 10