📄 recurse.c
字号:
/* Trivial code used to test watchpoints in recursive code and auto-deletion of watchpoints as they go out of scope. */#ifdef PROTOTYPESstatic intrecurse (int a)#elsestatic int recurse (a) int a;#endif{ int b = 0; if (a == 1) return 1; b = a; b *= recurse (a - 1); return b;}int main(){#ifdef usestubs set_debug_traps(); breakpoint();#endif recurse (10); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -