* gdb란?
  Command line Debugging을 위해 사용되는 Debugger

* 기본 명령어
  - r : Run
  - b 함수이름 or b 줄번호 : Breakpoint
  - n : Next step
  - c : Continue
  - q : Quit


+ Recent posts