📄 init12.c
字号:
// Build don't run:// Special g++ Options: -O3// Origin: Mark Mitchell <mark@codesourcery.com>typedef int (*fp)(); struct S{ fp f;};struct T{ static int f() { return 0; }};static const S s = { &T::f };int main(){ return (*s.f)();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -