From a066de8bdf1e55d8d5413f5a8be6e8d496f95f05 Mon Sep 17 00:00:00 2001 From: Ruize Tang <1466040111@qq.com> Date: Fri, 8 Nov 2019 00:16:47 +0800 Subject: [PATCH] update slide --- Slides/2019-11-01_Function_Array/sections/debug.tex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Slides/2019-11-01_Function_Array/sections/debug.tex b/Slides/2019-11-01_Function_Array/sections/debug.tex index 30010fa..40174aa 100644 --- a/Slides/2019-11-01_Function_Array/sections/debug.tex +++ b/Slides/2019-11-01_Function_Array/sections/debug.tex @@ -134,6 +134,8 @@ \section{简易调试技术}\label{sec:简易调试技术} \textbf{行为} & \textbf{命令} \\ \hline 设置断点在\texttt{main()} & \texttt{b main} \\ \hline 设置断点在第八行 & \texttt{b 8} \\ \hline + 运行程序 & \texttt{r} \\ \hline + 继续执行 & \texttt{c} \\ \hline 查看变量a[4][4] & \texttt{p a[4][4]} \\ \hline 单步不进入函数执行3行 & \texttt{n 3} \\ \hline 单步进入函数执行1行 & \texttt{s} \\ \hline