All Questions
58
questions
0
votes
0
answers
37
views
Unable to start debugging program path is missing or invalid, even though the program is compiled, runs perfectly and has the correct path
enter image description here
I have all the necessary libraries installed on windows to run C program, and the program runs perfectly. But I am not able to debug the code due to this error. Also, yes, ...
0
votes
0
answers
238
views
VSCode C/C++ output is going to the debug console instead of the terminal
I have this issue on windows but when running it in WSL it's pushing stdio to terminal. I'd really like to fix this issue without using the code runner extension but almost all of the solutions I've ...
0
votes
0
answers
25
views
Internal terminal not working on macos vscode [duplicate]
Im new into programming and at the moment im learning c.
On my macbook I have a problem when trying to run my code, i can´t use the internal console in vscode. If I use the external terminal from ...
1
vote
1
answer
502
views
Run VScode from Dev Console through Context Menu
When trying to compile C programs with VS Code, the editor says it should be launched from Developer Console. However, that makes the Open Vscode Here from context menu pretty much useless.
How can I ...
0
votes
1
answer
68
views
vs code c/c++ compiling issues [closed]
hi there iam a begginer in programing field and i have faced a proplem in setting my coding environment in visual studio code[enter image description here](https://i.sstatic.net/gE6Rr.png) so ...
0
votes
0
answers
233
views
Vscode run build task not working... it begins but never ends
i have a problem with build function in vscode (language C) because when i click on "run build task", "debug C/C++ file" or "Run C/C++ file" vscode starts building my ...
2
votes
0
answers
238
views
How to run memory viewer on VScode on mac
I would like to look into how's c lang works with checking by memory viewer on VS Code on Mac.
An extension of C/C++ from microsoft was able to install to my mac and works fine, but the extension of ...
3
votes
0
answers
440
views
Configure VSCode debugger for C program
I am trying to use VScode for debugging a C program. I have C/C++ Extension installed (C/C++ Intellisense v1.16.3 from Microsoft)
The issues that I am facing are:
"Variables" not getting ...
1
vote
0
answers
2k
views
VSCode on Ubuntu not giving the option to compile with gcc
I am trying to get vscode to work with a c project but for some reason when I try to run it, it only gives this option. There is no option to compile with gcc or anything.
I may be being stupid but I ...
1
vote
0
answers
403
views
While debugging, the error "Unable to perform this action because the process is running." comes out
I debug the c program using vscode connecting Ubuntu remotely.here is some screenshots below.
this error will appear after I start the debugging and step in for several times,the most interesting is ...
0
votes
0
answers
309
views
Debug configuration select options in vscode appearing twice
I don't live in an English-speaking country. I'm sorry for my poor English skills.
1st = 4th, 2nd = 5th, 3rd = 6th in this picture
Debug configuration select options in vscode appearing twice!
How ...
0
votes
1
answer
114
views
Constructing a program-string for debugging C-code in/for launch.json
I want to use vscode for debugging c-code on ubuntu. My buildsystem creates executable-files at a location that is pretty much constructed from the location and name of the .c file (e.g. source/...
0
votes
1
answer
121
views
Unable to link .lib to VSCode-Undefined reference to `DAQmxCreateTask'
Building a C Code using Visual code studio having a third-party Library file from National Instruments. I have already included header file "NIDAQmx.h" to the code. The library file is still ...
0
votes
0
answers
769
views
VSCode won't debug with scanf
I have this problem in Visual Studio Code (for Win10), with Code Runner extention (run in terminal is checked). I wrote a very simple program to test it:
#include <stdio.h>
int main(void)
{
...
0
votes
0
answers
897
views
C program not running in VSCode Macbook M1
I have installed MinGw via Homebrew on my M1 Macbook. I wanted it to be used for C programming on VSCode. I have installed the C/C++ extension by Microsoft and Code Runner extension. The output runs ...