main 函数为空为何还能输出呢?
#include "stdio.h"int f(),g=f();
void main()
{
}
int f()
{
printf("hello world!\n");
return 0;
}
2011-04-14 21:46
2011-04-14 22:06
4.c:3: error: initializer element is not constant

2011-04-14 22:19
2011-04-14 22:32
2011-04-15 08:26