我要定义一个结构例如
typedef struce node { char data; int curlen;};最前的的typedef是为什么要加上,如果不要效果差在什么地方typedef struce node string;struce nodes string;定义结构变量的时间加上和不加有什么效果差别?
typedef struce node { char data; int curlen;}string; 存在的,给新定义的结构体起了个别名 string原来是起了一个别名?!~~那么也就是说:string s == struct node s