Reputation: 515
I'm trying to compile in the terminal my C code in Visual Studio Code. How can I do this?
This is how it should look like:
But in my Visual Studio Code it looks like this:
Upvotes: 1
Views: 85
Reputation: 26
First of all, check if you've installed a C compiler. If not, consider browsing this page
I recommend you using Mingw, quite easy to install. You can find many videos online to install this compiler on Youtube
With all of this installed, it should perfectly work after a reboot of your computer! :)
Upvotes: 1