关于C语言的函数的static
2.c#include <stdio.h>
#include "1.c"
int main()
{
void enter_string(char str[]);
char c,str[80];
enter_string(str);
return 0;
}
1.c
static void enter_string(char str[80])
{
gets(str);
}
为什么我enter_string加上static的时候
2.c这个源文件还是可以使用enter_string这个函数啊!!!!!