Sunday, June 11, 2017

C++ :Setup Environment

Setup Environment <For Windows>

If you are still willing to set up your environment for C++, you need following two softwares available on your computer.

Text Editor:

This will be used to type your program. Examples of few editors include Windows Notepad, Notepad++,Sublimetext Editor, etc.
The files you create with your editor are called source files and for C++ they typically are named with the extension .cpp, .cp, or .c.
Before starting your programming, make sure you have one text editor in place and you have enough experience to type your C++ program.

C++ Compiler:

This is actual C++ compiler, which will be used to compile your source code into final executable program.Most frequently used and free available compiler is GNU C/C++ compiler.

IDE:

IDE (Integrated Development Envionment is a software suite that consolidates the basic tools developers need to write and test software. Typically, an IDE contains a code editor, a compiler or interpreter and a debugger that the developer accesses through a single graphical user interface (GUI). An IDE may be a standalone application, or it may be included as part of one or more existing and compatible applications.

With IDE installed in your system you donot need  to install editor and complier saperately. Following are some of the famous IDE's for windows (most of them are also available for linux and Mac OX) along with their download links. 
These all IDE's are free.Personally, I prefer codeblocks. Dev C++ has many bugs. Be sure to download Codeblocks Mingw setup(other donot support C++). For eclipse you need to install JDK, plus download Mingw  complier saperately. As for Visual Studio I advise you to install only when you have sound knowledge on C++.


Plz :Donot hesitate to like, suscribe , follow and comment...
   I will come up with learning resources and codeblocks installation.
Plz write your queries in comment section. I will try my best to solve... 
Your feedbacks are always welcome...
Looking for your full support... 
 

3 comments:

  1. Plz if you have any questions ask in comment section. I will try my best to help you.

    Plz follow me for more interesting stuffs...

    ReplyDelete
  2. How about QtCreator ? I've done several school projects in it and in my experience it's an easy to use, cohesive environment.

    ReplyDelete
  3. I think codeblocks is easy to use for begineers

    ReplyDelete

Addition of two Binary numbers using C

Addition of two Binary numbers using C  The operation of adding two binary numbers is one of the fundamental tasks performed by a digita...