Answers for "debugging c++"

C++
1

debugging c++

Run the code with gdb ./yourCode

Use 'run' command to start the program.

When it crashes use 'bt'(back trace) command to find where it happened.
Posted by: Guest on November-04-2020

Browse Popular Code Answers by Language