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...