forked from srinirad/IA1-Revision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p1debuglog.txt
77 lines (76 loc) · 2.11 KB
/
p1debuglog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
gcc -g p1final.c
gdb a.out
GNU gdb (Ubuntu 8.1.1-0ubuntu1) 8.1.1
Copyright (C) 2018 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-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from a.out...done.
(gdb) b main
Breakpoint 1 at 0x7fc: file p1final.c, line 16.
(gdb) r
Starting program: /home/runner/IA1-Revision/a.out
warning: Error disabling address space randomization: Operation not permitted
Breakpoint 1, main () at p1final.c:16
16 {
(gdb) n
17 int a,b,sum=0;
(gdb) n
18 input(&a,&b);
(gdb) s
input (a=0x7fff466d567c, b=0x7fff466d5680) at p1final.c:4
4 printf("enter two numbers\n");
(gdb) n
enter two numbers
5 scanf("%d%d",a,b);
(gdb) n
1
2
6 }
(gdb) n
main () at p1final.c:19
19 add(a,b,&sum);
(gdb) s
add (a=1, b=2, sum=0x7fff466d5684) at p1final.c:9
9 *sum=a+b;
(gdb) n
10 }
(gdb) p sum
$1 = (int *) 0x7fff466d5684
(gdb) n
main () at p1final.c:20
20 output(a,b,sum);
(gdb) s
output (a=1, b=2, sum=3) at p1final.c:13
13 printf("sum of %d + %d is %d",a,b,sum);
(gdb) p sum
$2 = 3
(gdb) p a
$3 = 1
(gdb) o b
Ambiguous command "o b": obscure, output, ov, overlay, ovly.
(gdb) p b
$4 = 2
(gdb) n
14 }
(gdb) n
main () at p1final.c:21
21 return 0;
(gdb) n
22 }(gdb) n
__libc_start_main (main=0x55a1e92007f4 <main>, argc=1, argv=0x7fff466d5778,
init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>,
stack_end=0x7fff466d5768) at ../csu/libc-start.c:344
344 ../csu/libc-start.c: No such file or directory.
(gdb) n
sum of 1 + 2 is 3[Inferior 1 (process 108) exited normally]
(gdb)