标签: c visual-c++ gcc void
void f(){} int main(){ printf("%d",sizeof(f())); return 0; }
在gcc中显示“1”,在VC中显示“0”。为什么呢?