addrfunc3.c

来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 14 行

C
14
字号
// Test for overload resolution in comparison expressions.// Contributed by Jason Merrill <jason@cygnus.com>.// Special g++ Options: -fpermissive -wvoid f (int) { }void f ();int main () {  void (*p)(int);  p = f;  if (p != f)    return 1;}

⌨️ 快捷键说明

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