History of C
The history of C programming dates back to the early 1970s when Dennis
Ritchie created it at Bell Laboratories. Here's a brief timeline of the major
milestones in the history of C: - 1969: The development of C began as a successor to the B programming
language, which Ken Thompson created. Dennis Ritchie wanted to
improve upon B's capabilities and efficiency.
- 1972: The C programming language was developed primarily to support
the development of the Unix operating system. Ken Thompson and
Dennis Ritchie rewrote Unix in C, which helped in porting the operating
system to different computer architectures easily.
- 1978: The first edition of "The C Programming Language," also known
as the "K&R C," was published. Brian Kernighan and Dennis Ritchie
wrote it, becoming the authoritative reference for C programming.
- 1983: The American National Standards Institute (ANSI) formed a
committee to establish a standard for the C language. The committee,
known as X3J11, worked to define the ANSI C standard. The resulting
standard, called ANSI C or C89, was published in 1989.
- 1990: The International Organization for Standardization (ISO) adopted
the ANSI C standard with some modifications and released it as ISO/IEC
9899:1990. This version is commonly referred to as C90.
- 1999: The ISO/IEC 9899:1999 standard, also known as C99, was
released. C99 introduced several new features to the language,
including support for variable-length arrays, inline functions, and
improved support for comments
117.
- 2011: The ISO/IEC 9899:2011 standard, known as C11, was published.
C11 introduced additional features such as multi-threading support,
improved Unicode support, and new library functions.
Since then, the C language has continued to evolve, with the most recent
standard being C18, released in 2018. However, it's important to note that C
programming is generally backward compatible, meaning that programs
written in earlier versions of C should still work in newer compilers.
C's simplicity, efficiency, and low-level capabilities have made it a widely used
language for system programming, embedded systems, and performance
critical applications. It has also influenced the development of numerous other
programming languages, including C++, Java, and C#. The widespread
adoption of C has contributed to its longevity and popularity among
programmers.
- 1969: The development of C began as a successor to the B programming language, which Ken Thompson created. Dennis Ritchie wanted to improve upon B's capabilities and efficiency.
- 1972: The C programming language was developed primarily to support the development of the Unix operating system. Ken Thompson and Dennis Ritchie rewrote Unix in C, which helped in porting the operating system to different computer architectures easily.
- 1978: The first edition of "The C Programming Language," also known as the "K&R C," was published. Brian Kernighan and Dennis Ritchie wrote it, becoming the authoritative reference for C programming.
- 1983: The American National Standards Institute (ANSI) formed a committee to establish a standard for the C language. The committee, known as X3J11, worked to define the ANSI C standard. The resulting standard, called ANSI C or C89, was published in 1989.
- 1990: The International Organization for Standardization (ISO) adopted the ANSI C standard with some modifications and released it as ISO/IEC 9899:1990. This version is commonly referred to as C90.
- 1999: The ISO/IEC 9899:1999 standard, also known as C99, was released. C99 introduced several new features to the language, including support for variable-length arrays, inline functions, and improved support for comments 117.
- 2011: The ISO/IEC 9899:2011 standard, known as C11, was published. C11 introduced additional features such as multi-threading support, improved Unicode support, and new library functions.
Comments
Post a Comment