Update:
Why not just use the gdb printf command?
(gdb) printf "%s", x
asd
qwe
...
(gdb)
Old answer:
From within the debugger you can execute commands. Just call printf
(gdb) call printf("%s", x)
asd
qwe
...
(gdb)
Update:
Why not just use the gdb printf command?
(gdb) printf "%s", x
asd
qwe
...
(gdb)
Old answer:
From within the debugger you can execute commands. Just call printf
(gdb) call printf("%s", x)
asd
qwe
...
(gdb)
The requested URL was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.