求解答我的c语言问题
#include<stdio.h>static int a=2;
other()
{
int c=10;
a=a+2;c=c+5;
printf("a:%dc%d\n",a,c);
}
main()
{
int c=0;
printf("a:%dc:%d\n",a,c);
c=c+8;
other();
printf("a%dc%d\n",a,c);
return 0;
}
这主函数里面不是调用了上面定义的函数了吗,怎么不要声明??而且还要与主函数有一个空格?实在不懂啊,求解单