Posts

Showing posts from November, 2018

Compiler for C++

Image
Compiler: A compiler is a computer software that transforms computer code written in one language (the source language) into another programming language (the target language). There are different compilers for C++ language. Some of them are as bellow: GNU Compiler Collection Intel C++ Compiler Clang MinGW Intel Fortran Compiler etc. We are going to use MinGW. So, I will tell you how to download and install MinGW. How to download and install MinGW? Click DOWNLOAD bellow to download MinGW. DOWNLOAD Scroll down and click this button.      2.   The following exe file will be downloaded with the name   mingw-get-setup.exe 3. Click install 4. Click continue 5. Click continue 6. The following pop-up window will appear. Pleas make sure that you selected all the check-boxes. e.g.  mingw32-base ,  mingw32-gcc=g++ ,  msys-base and so on. 7. Click on Installation ...

Introduction to C++

Image
What is C++? C++ is a programming language which is used to communicate with computer. C++ is a  general-purpose programming language , designed by  Bjarne Stroustrup . It is an extension of C language. It is used to make computer programs, Android and IOS applications and developing video games. It is one of the most popular languages primarily utilized with system/application software. C++ ranks 2nd in popularity according to 2018 IEE spectrum top Programming Language ranking .  It is pronounced "see plus plus". C++ is considered to be an intermediate level-language, as it enclose both high and low level language features. It is ideal language for developing firmware or potable applications. Many of our today's operating system, system drivers, browsers, and games use C++ as their core language.This makes C++ one of the most popular languages today.  Computer can only understand machine language and human wish to write in high level language. Hig...