标签: c struct
这是我的代码,它显示错误Expected Type qualifier before static 看起来像C中不允许这样但是为什么?
Expected Type qualifier before static
#include<stdio.h> struct st{ int x; static int y; char z; }; void main() { printf("Sizeof(struct st) : %d\n",sizeof(struct st)); }