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

📄 900428_02.c

📁 linux下的gcc编译器
💻 C
字号:
// g++ 1.37.1 bug 900428_02// g++ fails to issue either errors or warnings (even with -pedantic) for// attempts to perform either pre or post increment or decrement operations// on variables which have either pointer-to-void types or pointer-to-function// types.// cfront 2.0 passes this test.// keywords: pointer arithmetic, increment, decrement// Build don't link:void *vp;void (*fp) ();void test (){  vp++;		/* ERROR - */  ++vp;		/* ERROR - */  vp--;		/* ERROR - */  --vp;		/* ERROR - */  fp++;		/* ERROR - */  ++fp;		/* ERROR - */  fp--;		/* ERROR - */  --fp;		/* ERROR - */}

⌨️ 快捷键说明

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