C INSTALLATION

INSTALLATION OF C LANGUAGE:-

To start learning C programming, you only have to install the C compiler in your system, and nowadays C and C++ both compilers come as a single integrated package, which serves the purpose of C and C++ both program development.

WHAT IS COMPILER IN C:-

A compiler is a computer program that transforms human-readable (programming language) source code into another computer language (binary) code

A compiler is a computer program that transforms human-readable (programming language) source code into another computer language (binary) code

C compiler is a software application that transforms human-readable C program code to machine-readable code. The process of transforming the code from High-Level Language to Machine Level Language is called "Compilation".

Onthe other hand, machine language is dependent on processor and processor understands zeroes and ones (binary) only. All C program execution is based on a processor which is available in the CPU; that is why entire C source code needs to be converted to the binary system by the compiler.

LIST OF C COMPILER FOR WINDOWS OS :-

Since there are various compilers available into the online market, here are the lists of some of the frequently used ones:
  • CCS C Compiler
  • Turbo C
  • Minimalist GNU for Windows (MinGW)
  • Portable C Compiler
  • Clang C++
  • Digital Mars C++ Compiler
  • Intel C++
  • IBM C++
  • Visual C++ : Express Edition
  • Oracle C++

  C COMPILER INSTALLATION ON WINDOWS:-

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

  C COMPILER INSTALLATION ON MAC:-

    Xcode development environment came with GNU C/C++ compiler; You can install it from Apple's            website.
    You can download Xcode from developer.apple.com/technologies/tools.


Comments

Popular posts from this blog

PROGRAM STRUCTURE