我正在尝试在 vscode 中调试 C 代码,当我点击调试时,某些内容显示在集成终端、调试控制台中,但我希望的输出没有打印在任何地方,例如printf()
的输出没有显示,我正在尝试使用scanf()
获取用户输入,但它也不起作用。
显然,我碰巧通过在launch.json
文件中尝试不同的东西来解决自己的问题。 我将属性"externalConsole": true
其值默认设置为false
. 现在,外部命令提示符窗口将打开,输出将在那里打印,并且用户输入正常工作。 以下是我的launch.json
文件:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "gcc.exe - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\MinGW\bin\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "gcc.exe build active file"
}
]
}