static修饰形式参数
#include<stdio.h>
int test(static int n)
{
return n;
}
int main()
{
printf("%d\n",test(1));
return 0;
}
虽然从static的含义上来讲,修饰一个形式参数没有任何意义,但是并没有报错。可以运行。
#include<stdio.h>
int test(static int n)
{
return n;
}
int main()
{
printf("%d\n",test(1));
return 0;
}
虽然从static的含义上来讲,修饰一个形式参数没有任何意义,但是并没有报错。可以运行。
2016-03-03
举报