?? consecutive.c
字號:
/* Purpose of this test: to test breakpoints on consecutive instructions.*/int a[7] = {1, 2, 3, 4, 5, 6, 7};/* assert: first line of foo has more than one instruction. */int foo (){ return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6];}main(){#ifdef usestubs set_debug_traps (); breakpoint ();#endif foo ();}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -