Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 CDT eclipse 和 MinGW 调试一个简单的 c 程序。当我运行我的程序时,控制台会显示所需的输出。但是当我尝试用断点调试程序时,控制台中没有输出。控制台是空白的。。
您需要确保已使用该-g选项在调试模式下编译。如果你这样做了,那么执行可能会在你的断点处停止(大概是在打印到控制台的代码之前)。您必须恢复执行,以便它运行其余代码。
-g