typedef struct mystructtag{ int i; float f; char c;} mystruct;
struct mystruc{ int i; float f; char c;} ;
第一种这么写有什么作用?