C is a high-level programming language developed by Dennis Ritchie in 1973 at Bell Laboratories. It is one of the most popular languages today because of structure, high-level abstraction, machine-independent features, etc. It was developed to write the UNIX operating system, hence it is strongly associated with UNIX, which is one of the most popular networks operating systems in use today.
It is an example of a compiled language that is translating the instructions to low-level that is binary which can be understood by a computer. This process is called compiling and the piece of code(another set of programs) responsible for translating is called a compiler. A very popular compiler for the C language is GCC.
Any programming language acts as a bridge between our logic/algorithm and a computer. The idea behind creating a C language was to create an easy language that requires a simple compiler and enables programmers to efficiently interact with the machine/system, just like machine instructions.
Relevant Posts:
- What is a Programming Language?
- Features of C language
- Hello World program
- Compile and run a C program
- The phase C program compilation
- Compiler, interpreter and Assembler
- C language syntax
Categories: C Language
Leave a Reply