Posts

Showing posts from May, 2024

Installing and running language C in VS Code with MinGw.

C in VS code with MinGW Firstly, You should download and install VS code and then install some extensions like " C/C++, C/C++ extension pack and most importantly, install code runner with the  " .run " logo   (You can refer  this blog on a full installation guide) . Then after setting all these stuffs, we have to install a compiler, that is MinGW from  website . After downloading install the compiler of C and C++ by selecting GCC for C and  G++ for C++. Wait for 5 minutes as the installation takes a while to install completely in you system. After completion, click close and open file Explorer, Go to C Drive and look for MinGW > Bin and copy the path. Then search for Edit Environment Variable for you account  in the windows search bar, select Path  in the user variable option, now click on edit, click on new and paste the path you just copied, click ok, and close the window. Now, to validate your installation, go on CMD and run the given com...

A Step by Step Guide to install and set up VS Code in our system.

VS Code Before installing VS Code, we have to know: What is VS Code? Visual Studio Code , commonly know as VS Code . It is a source code editor developed by Microsoft. It has support for development operations like debugging, task running, and version control. Installing Visual Studio Code For installing VS Code, there are two options available for us: 1. By going to  Microsoft Store and download it. 2. By going to VS Code  website  and downloading your desire package from there. In this particular document, we are mainly going to discuss about the first option, because it is less hectic and also it takes less time to download and install which is efficient. Installing VS Code from Microsoft Store Go to Microsoft store on your system or you can  click here  and your will be redirected to VS Code installation page in Microsoft Store. Now, click to install VS Code and the installation will start soon. Just wait for it to install and after completion click on open...