Nicolas F
Nicolas F

Reputation: 515

How can I make my Visual Studio Code terminal compile my c code? (I already have the C extension)

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:

This is an image of what it should look like

But in my Visual Studio Code it looks like this:enter image description here

Upvotes: 1

Views: 85

Answers (1)

Deux Ailes
Deux Ailes

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

Related Questions