#include "stdio.h" int i=1; main() { int reset(); int next(int); int last(int); int new(int); .......... } int reset() { .... } int next(int j) { .... } int last(int j) { .... } int new(int i) { .... } 以上程序中,int i=1;中的i是什么存储类型?主函数调用下面的函数时,其实没必要先说明,而且其说明好像也不太对,int next(int);int last(int);int new(int);中好像没必要加形参类型吧?