[root@localhost test]# gcc test.c -o test -g
[root@localhost test]# gdb test
GNU gdb (GDB) Fedora (7.2-16.fc14)
Copyright (C) 2010 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 "i686-redhat-linux-gnu".
For bug reporting instructions, please see:
< http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /media/sf_vm_share/test/test...done.
(gdb) l 1 //为什么用l 后面不加行数就不从头显示代码呢
1 #include<stdio.h>
2
3 /*int func(int n)
4 {
5 int sum=0,i;
6 for(i=0;i<n;i++)
7 {
8 sum+=i;
9 }
10 return sum;
(gdb)