题目类型:
填空题
题目内容
下列程序段中的变量f是局部_________变量。 int c(int n) { static int f=1; f=f*n; return f; }
正确答案
静态(或static)