⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 struct.c

📁 Small Device C Compiler 面向Inter8051
💻 C
字号:
#ifdef TEST1struct tag {  int good1;  register int bad;	/* ERROR */  int good2;} badstruct;		/* IGNORE */#endif#ifdef TEST2struct tag {  int good1;  int bad;  int bad;	/* ERROR */  int good2;} badstruct;#endif#ifdef TEST3struct tag {  int good1;  int bad:255;	/* ERROR */  int good2;} badstruct;#endif#ifdef TEST4struct tag {  int good1;  int good2;} goodstruct1;struct tag goodstruct2;#endif#ifdef TEST5astruct tag {  int good1;  int good2;} goodstruct1;union tag badunion;	/* ERROR */#endif#ifdef TEST5bunion tag {  int good1;  int good2;} goodunion1;struct tag badstruct;	/* ERROR */#endif#ifdef TEST6struct linklist {  struct linklist *prev;  struct linklist *next;  int x;} ll;#endif#ifdef TEST7aunion tag {  struct tag *next;	/* ERROR */  int x;} ll;#endif#ifdef TEST7bstruct tag {  union tag *next;	/* ERROR */  int x;} ll;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -