以下程序的输出结果是( )。
#include<stdio.h> int func(int i) { for(;i>0;i--) i--; return i; } void main( ) { int i = 5; printf("%d",func(i)); }
Copyright ©