- 论坛徽章:
- 5
|
LZ,有结果了吗?我在我的环境下试了一下你的程序,调试如下:- GNU gdb (GDB) Red Hat Enterprise Linux 7.6.1-51.el7
- Copyright (C) 2013 Free Software Foundation, Inc.
- License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
- This is free software: you are free to change and redistribute it.
- There is NO WARRANTY, to the extent permitted by law. Type "show copying"
- and "show warranty" for details.
- This GDB was configured as "x86_64-redhat-linux-gnu".
- For bug reporting instructions, please see:
- <http://www.gnu.org/software/gdb/bugs/>...
- Reading symbols from /root/Project/programing/C/a.out...done.
- (gdb) b test2
- Breakpoint 1 at 0x4005f3: file func_args.c, line 16.
- (gdb) r
- Starting program: /root/Project/programing/C/a.out
- 100
- 200
- 300
- Breakpoint 1, test2 (s=0x400714 "hello world") at func_args.c:16
- 16 p = (int *)&s;
- Missing separate debuginfos, use: debuginfo-install glibc-2.17-55.el7.x86_64
- (gdb) n
- 17 p++;
- (gdb) p p
- $1 = (int *) 0x7fffffffdfa8
- (gdb) p *(p+8)
- $2 = 100
- (gdb) p *(p+10)
- $3 = 200
- (gdb) n
- 18 printf("%d\n", *p);
- (gdb) p p
- $4 = (int *) 0x7fffffffdfac
复制代码 真心没想明白阿 |
|