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

📄 array.c

📁 Newlib 嵌入式 C库 标准实现代码
💻 C
字号:
/* WinBond bug report   this is a compile test. At one time static arrays over 500 elements   didn't work. We'll test both global and local array. If it compiles at   all, it it passes. */#include <stdio.h>static short aa[64][64];static int bb[500];main() {  static short cc[64][64];  static int dd[500];  pass ("large arrays");  fflush(stdout);}

⌨️ 快捷键说明

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