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

📄 recurse.c

📁 这个是LINUX下的GDB调度工具的源码
💻 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 + -