DEV Community

Narottam04
Narottam04

Posted on • Updated on

[Step By Step Guide] How to set up visual studio code for C and C++ programming 2021.

Why should you use visual studio code ?

Visual Studio Code is a free source-code editor made by Microsoft for Windows, Linux and macOS. Features include support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and embedded Git.

It currently supports hundreds of programming languages and file formats. Several common languages come supported by default (JavaScript, HTML, CSS, etc), and others gain support by adding integrated extensions. If you find a language that isn't supported by an existing extension, the open nature of the extensions system means you can build one.

In this blog post you will learn how to set up visual studio code on your local environment for C and C++, this can get tricky but if you follow step by step you can set it up easily.

Step 1: Download Visual studio code.

Type vscode on your browser and click on the first link of the page, or just click here.

install vscode

vscode

Now download the installer according to your operating system.

Step 2: Install vscode

This step is easy, accept the agreement and click next.

install

Check the following options as shown in above image and click next and install.

Step 3: Download extensions for visual studio code.

vscode editor

Once you have installed visual studio code, now its time to install some extensions. Click on the button where red arrow is pointing in above image.

Now click on C/C++ extension from Microsoft as shown in the below image. If you don't see the extension search C/C++ and you will find it.

extension

Install the extension.

c

Now we have to install another extension called Code Runner.

code runner

Now we have successfully installed code editor but we need a compiler to compile and output our code, for that we will be installing MinGW.

Step 4: Download MinGW

Type mingw on google and choose following first link as shown in the image below or Click Here.

mingw

Now click download.

download

Step 5: Install MinGW

Open the installer, you should see something like the below image. Click on install and choose your directory where the software should be installed and click continue.

mingw

mingw install

After installing, click on continue and right click on every checkbox and choose mark for installation.

install

After checking all checkboxes you should see something like image below.

install

Now click Installation on top left corner and then choose Apply Changes. You should see something like shown in the image below.

install

And then click on Apply.

Once you complete the installation, you should see something like the image below.

install

Click close and close the installer.

Step 6: Copy Bin Path

Now open 'This PC' and open 'local Disk C' you should see mingw file and click on bin folder.

bin path

Now you have to copy the folder destination which is above the page as shown below.

bin path

Now right click and copy or just press 'Ctrl + C' on your keyboard.

Step 7: Environment Variables

Open 'Control Panel' from your start menu and click on System. If you don't find system on your control panel just type 'system' on the search bar which you can find in top right corner of the control panel.

variable

Click on Advanced system setting on right side you should see system properties as shown in the image below.

variable

Now click on Environment Variables you should see something as shown in the image below.

variable

Now click on the path in system variable and click on edit as shown in the image below.

variable

Now click on new and paste the bin path that we have copied in the previous step and then click Ok.

variable

Now click ok till there are no pop ups left.

Step 8: Let's check if MinGW has been successfully installed or not.

Click on search button near the bottom left of windows and search for command prompt.

cmd

g++ --version
Enter fullscreen mode Exit fullscreen mode

cmd

And if you see something like the image above, voila! we did it.

πŸ›‘ πŸ›‘ If you get some error don't worry just reinstall mingw as shown in the step 4 and step 5 and it should solve the problem.πŸ›‘πŸ›‘

Step 8: Let's write our first program in C++

Hurray! we have successfully set up vscode for C and C++ now lets test it by writing our first program in vscode.

Open vscode.

Click on 'File' in upper left section and choose 'Open Folder'.

Lets make a new folder in dekstop and select the folder.

vscode

Now click on the document symbol in the side bar. If you dont see a sidebar just press Ctrl + B on keyboard.

Now make a file with a extension of .cpp as shown in the image below

vscode

Now lets type our first code. You can copy and paste the code that I have provided below.

hello world

#include<iostream>
using namespace std;
int main()
{
    cout<<"hello world";
}
Enter fullscreen mode Exit fullscreen mode

Step 9: Run the code.

Right click and click on run or press keyboard shortcut 'Ctrl+Alt+N'.

terminal

And there you go you have written your first program in C++, I hope this tutorial was helpful if you are facing any problem while installing let me know in the comment section or email me at blog.webdrip.in.

Get more insights like this on my blog, https://blog.webdrip.in.

Top comments (8)

Collapse
 
nandulakarthik profile image
Karthik Nandula

Just one thing I'd add to this, after I installed mingw, I was trying to run my c file but it didn't work because my vs code needed a restart, so if vs code was already open before installing mingw, just give vs code a restart and everything should work.

Collapse
 
nnennajohnrain profile image
Nnennajohn-rain

This was super helpful, you're amazing! Thank youuuu.

Collapse
 
mohamedabdulla profile image
Mohamed Abdulla

really helpful
__

Collapse
 
mohammadzakaria profile image
Mohammad Zakaria

thank you...i set up my vs code following this guide...

Collapse
 
narottam04 profile image
Narottam04

I'm glad, you found it helpful.

Collapse
 
divyanshpal profile image
divyansh343

it's really helpful. its worth reading

Collapse
 
narottam04 profile image
Narottam04

Glad you find it helpful!

Collapse
 
reihadi profile image
Reihane

Thank you!
when I run my code, I see this error:

'g++' is not recognized as an internal or external command,
operable program or batch file.

What am I supposed to do?