forked from srinirad/pps-IA1-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p2debuglog.txt
100 lines (99 loc) · 2.4 KB
/
p2debuglog.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
gcc -g p2original.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 0x813: file p2original.c, line 29.
(gdb) r
Starting program: /home/runner/pps-IA1-practice-2/a.out
warning: Error disabling address space randomization: Operation not permitted
Breakpoint 1, main () at p2original.c:29
29 a=input();
(gdb) s
input () at p2original.c:3
3 {
(gdb) n
5 scanf("%d",&a);
(gdb) n
1
6 return a;
(gdb) n
7 }
(gdb) n
main () at p2original.c:30
30 b=input();
(gdb) s
input () at p2original.c:3
3 {
(gdb) n
5 scanf("%d",&a);
(gdb) n
2
6 return a;
(gdb) n
7 }
(gdb) n
main () at p2original.c:31
31 c=input();
(gdb) s
input () at p2original.c:3
3 {
(gdb) n
5 scanf("%d",&a);
(gdb) n
3
6 return a;
(gdb) n
7 }
(gdb) n
main () at p2original.c:32
32 largest=cmp(a,b,c);
(gdb) s
cmp (a=1, b=2, c=3) at p2original.c:10
10 if(a>b && a>c)
(gdb) n
12 else if(b>a && b>c)
(gdb) n
15 return c;
(gdb) n
16 }
(gdb) n
main () at p2original.c:33
33 output(a,b,c,largest);
(gdb) s
output (a=1, b=2, c=3, largest=3) at p2original.c:19
19 if (largest==a)
(gdb) n
21 else if(largest==b)
(gdb) n
24 printf("%d is greatest",c);
(gdb) n
25 }
(gdb) m
Ambiguous command "m": macro, maintenance, make, mem, monitor, mt.
(gdb) n
main () at p2original.c:34
34 return 0;
(gdb) n
35 }
(gdb) n
__libc_start_main (main=0x55a17580080b <main>, argc=1, argv=0x7ffd2b3d1048,
init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>,
stack_end=0x7ffd2b3d1038) at ../csu/libc-start.c:344
344 ../csu/libc-start.c: No such file or directory.
(gdb) n
3 is greatest[Inferior 1 (process 238) exited normally]
(gdb)