ERRORS AFTER INSTALLATION OF VS CODE
ERRORS AFTER INSTALATION OF VS CODE There are some most common errors that you can face after the installation of visual studio code. This errors are very easy to solve so let's know what are all those errors and how do we will remove that errors. 1. UNABLE TO DETECT COMPILER The reason of this error is that vs code is an IDE (Integrated Development Environment) and MinGW is a compiler which we had downloaded from different website that's why our IDE is unable to detect MinGW. So to check whether our IDE detects compiler or not just open Powershell or CMD in your computer and type gcc (to check gcc compiler) or g++ (to check compiler for c++). If show error that gcc or g++ not recognized as shown below then it means we have to set path our compiler. So in order to do that first of all copy the path of your gcc/g++ compiler just find the MinGW file locatio...