How to debug DEVC++

Directly on the map, debug, compile, debug and then click on the above √ representatives also said next stop debugging debugging also commonly used debugging, add view, the next step, step into (function), skip function of these One option Insert picture description here
In addition, let’s talk about the difference between the next step of debugging in Devc++ and single-step entry.

The main difference is that when the function is run, the next step is to run the function and execute to the next line of the current code page, that is, the function is treated as a normal statement, and the single step entry will stop at the function entrance, that is, the code page will be displayed Go to the function entrance. Generally, we will step into it first and then click Next to see the execution process.

Guess you like

Origin blog.csdn.net/LXYDSF/article/details/114925692