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

📄 init-ref2_y.c

📁 linux下编程用 编译软件
💻 C
字号:
extern int f (void);extern int r;const int *p;void g (){  static const int &i = f();  // Test that i points to the same place in both calls.  if (p && p != &i)    ++r;  // Test that if so, it points to static data.  if (i != 42)    ++r;  p = &i;}void h (){  int arr[] = { 1, 1, 1, 1, 1, 1, 1 };  g ();}

⌨️ 快捷键说明

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