Customizable training materials to learn C++

Looking for C++ Tutorial Visit Nano teach c++!
  • C++ Installation
    14/07/2014 - 0 Comments
    To start learning C++ programming, you only need to install the C++ compiler in your System. What is a Compiler? A compiler is a computer program that transforms human…
  • C++ Program Structure
    13/07/2014 - 0 Comments
    This tutorial will explain you about the C++ program structure. Basically a C++ program involves the following section. Documentations Preprocessor Statements Global…
Nano teach C++ found result for your search here:

C++ Installation


To start learning C++ programming, you only need to install the C++ compiler in your System.

What is a Compiler?

A compiler is a computer program that transforms human readable (programming language) source code into another computer language (binary) code.
This tutorial is written for Windows, Unix / Linux and MAC users. All code has been tested and it works correctly on all three operating systems.

C++ Compiler Installation on Windows

To use C++ compiler in Windows, you can install any one software mentioned below.

C++ Compiler Installation on UNIX/Linux

If you are using UNIX / Linux, then most probably C++ compiler called GCC will already in your system. To check if you have it installed, you can type cc or gcc at command prompt.
$ gcc -v
If for some reason it is not Installed on your system, you can download it from gcc.gnu.org/install.

C++ Compiler Installation on MAC

You can install Xcode development environment from Apple’s website, to use GNU C/C++ compiler.
You can download Xcode from developer.apple.com/technologies/tools.

No comments:

Post a Comment