terminal – Visual Studio Code insists on running my program through the Debug Console
For some reason, VSC insists on running my code through the Debug Console which does not permit input (through scanf). Is it possible to remove the debug console, and run my code through the terminal instead?
I tried running the application by choosing the Run C/C++ option in the top left.
I thought that by not choosing the Debug C/C++ option, that VSC would not insist on using the debugger.
My program requires user input through sscanf, but the debugger interposes itself between the keyboard and my application.
Read more here: Source link