Debugging Question:
Download Questions PDF

Which GDB command can be used to put a break-point at the beginning of the program?
a) b main
b) b start
c) break
d) none of the mentioned

Linux Debugging Interview Question
Linux Debugging Interview Question

Answer:

a) b main

Download Linux Debugging Interview Questions And Answers PDF

Previous QuestionNext Question
GDB can be used:
a) to find out the memory leakages
b) to get the result of a particular expression in a program
c) to find the reason of segementation fault
d) all of the mentioned
To put the breakpoint at the current line ____ command can be used?
a) b
b) break
c) both (a) and (b)
d) none of the mentioned