Posts

ERRORS AFTER INSTALLATION OF VS CODE

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

Getting start with C++

Image
Introduction to C++   C++  is a cross-platform language that can be used to create high-performance applications.  C++  was developed by Bjarne Stroustrup, as an extension to the C language.  C++  gives programmers a high level of control over system resources and memory. C++  is still  important  in game programming and embedded device programming because in  C++  you can: Write programs that are very efficient in memory usage - no managed object overhead and no garbage collection pauses. Write programs that are very efficient in CPU usage - this language is very close to the hardware.   C++  is the most powerful language in the world, therefore, there is no better investment of time and effort than learning C++. With  C++  you can program anything. Installing visual studio ,G++ and more  Hello Guys, before we start learning C++, we need to download and install vs code. yes, here we will code our C++ langua...