Because the ideas behind C are like the ideas used in the design of the computer, the compiler (program builder) can generate fast machine code for the computer. The language itself has very few keywords, and most things are done using libraries, which are collections of code made to be reused. C has a big standard library called stdio, which stands for standard input/output.
writing protocol stacks like the code that allows one computer to talk to other computers on the internet.
writing operating systems, such as the Linux kernel, MacOS and UNIX, and the utilities that come with those operating systems.
writing application software, such as web browsers, word processors, etc.
writing video games. Many of the most well-reviewed video games, including Doom, Quake, and Super Mario 64 are written in C.
The compilers and interpreters of many other programming languages, such as Python and Perl, are written in C.
C standards
There are three successive standards for the C programmingArchived 2021-06-04 at the Wayback Machine language ANSI C, ISO C and Standard C which are published by the American National Standards Institute (ANSI) and the International Organization for Standardization (ISO).
C is available for many different types of computers. This is why C is called a "portable" language. A program that is written in C and that respects certain limitations can be compiled for most platforms, and all in mainstream use.
The syntax of C has also influenced many other programming languages, such as C++, C#, and Java, and many more programming languages we use nowadays.
Example code
Here is an example of a program written in C. When built and run it will show "Hello world!", followed by a new line on the computer screen.