本人在看翁恺老师的c语言课程时学到了debug的使用,但是按照教程一步一步实操的时候却发现程序debug启动后无反应。但是在调节了几个设置后就能成功运行debug了。
第一个设置的位置:Tools/Complier Options/General
勾选Add the following commands when calling the complierS:
并在其下的框中输入-std=c++11,如图
第二个设置的位置:Tools/Complier Options/Settings/Linker
将Generate debugging information (-g3) 的选项改成Yes,如图
设置完之后就可以正常使用debug了。