I use gdb to debug code. Each time I use "next" command to execute code line by line, GDB shows the line number of the current executing line, but it doesn't show the content of the code at the line. So I have to find it in my source code with the line number. It's very boring.

How can I see the code content of a line this is being executing in GDB? Thanks!