阅读背景:

有谁知道为什么这个编译成功?

来源:互联网 
int main()
{
   // forward declaration
   struct myStruct_st *mS; // Note that this will expand as "struct struct myStruct_st *mS which does not make any sense to me"

   return 0;
}

// definition of myStruct_s
typedef struct myStruct_s
{
   int x;
   int y;
} myStruct_st;
int main()
{
   // forward declaration
   struc



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: