Work

C Programming Language

language · 1972

Computing Programming Languages Systems Programming

C is a general-purpose programming language created by Dennis Ritchie at Bell Labs between 1969 and 1973. It became one of the most influential and widely used programming languages in history, serving as the foundation for Unix, Linux, Windows, and countless other systems.

Origins

C evolved from the B programming language, which Ken Thompson had developed for early Unix on the PDP-7. When Unix was ported to the more powerful PDP-11 in 1971, B’s limitations became apparent—particularly its lack of data types suited to the new hardware[1].

Ritchie extended B with a type system, creating “New B” and eventually C. The name C simply came from being the successor to B.

Key Features

C introduced concepts that remain fundamental to programming:

Rewriting Unix in C

The landmark achievement came in 1973 when Thompson and Ritchie rewrote Unix almost entirely in C[2]. This was revolutionary—operating systems had always been written in assembly language. Using a high-level language made Unix:

The K&R Book

In 1978, Brian Kernighan and Dennis Ritchie published “The C Programming Language,” universally known as K&R. This slim book became the definitive reference and taught generations of programmers. Its clear, concise style influenced technical writing for decades.

Standardization

C was standardized by ANSI in 1989 (C89/C90) and by ISO in 1990. Subsequent standards (C99, C11, C17, C23) have added features while maintaining backward compatibility.

Impact

C’s influence is difficult to overstate:

Over 50 years after its creation, C remains among the most widely used programming languages in the world.


Sources

  1. Bell Labs. “The Development of the C Language.” Ritchie’s own account of C’s evolution from B.
  2. Wikipedia. “History of Unix.” Documents the rewriting of Unix in C.