diff options
Diffstat (limited to 'dev/c/index.html')
-rw-r--r-- | dev/c/index.html | 44 |
1 files changed, 8 insertions, 36 deletions
diff --git a/dev/c/index.html b/dev/c/index.html index 3e8651f..aeff035 100644 --- a/dev/c/index.html +++ b/dev/c/index.html @@ -135,39 +135,7 @@ (gdb) s </pre> - <p>Execute next line;</p> - - <pre> - (gdb) n - </pre> - - <p>To start gdb in TUI mode press;</p> - - <dl> - <dt>Ctrl-x A</dt> - <dd>Enter or leave TUI.</dd> - <dt>Ctrl-x 1</dt> - <dd>TUI with only one window.</dd> - <dt>Ctrl-x 2</dt> - <dd>TUI with more than two windows.</dd> - <dt>Ctrl-x o</dt> - <dd>Change active window.</dd> - <dt>Ctrl-x s</dt> - <dd>TUI single key mode.</dd> - <dt>Ctrl-L s</dt> - <dd>Refresh screen.</dd> - <dt>Up</dt> - <dd>Scroll</dd> - <dt>Down</dt> - <dd>Scroll</dd> - <dt>Left</dt> - <dd>Scroll</dd> - <dt>Right</dt> - <dd>Scroll</dd> - </dl> - - <p>Run again and step in hello function, to print - variable "name" value and type;</p> + <p>Print variable "name" value;</p> <pre> (gdb) print name @@ -175,7 +143,7 @@ (gdb) </pre> - <p>Print variable name type;</p> + <p>Print variable "name" type;</p> <pre> (gdb) ptype name @@ -183,8 +151,12 @@ (gdb) </pre> - <p>Variable is a <a href="elements.html#const">string constant</a>, - continue reading <a href="elements.html">Elements</a>.</p> + <p>Variable is a <a href="elements.html#const">string constant</a>. + Execute next line to end;</p> + + <pre> + (gdb) n + </pre> <a href="../index.html">Development Index</a> <p> |