Monday, August 3, 2015

The History of the C Programming Language


 Before we move forward it is often useful to look back. Today’s post is the first of a three-part series looking at the history of the major programming languages and technologies that underpin application development on the iOS platform.
In today’s post i want to examine the creation and subsequent rise of the C Programming Language, from its early inception at the AT&T Bell Labs through the efforts to introduce standardization to its current ubiquity as one of the most used programming languages of all time. In doing so I want to help you understand the influence that C has had on the more recent programming languages such as Objective-C (the topic of the next post) and understand how Unix, the operating system that the C Programming Language was created to develop, remains the core backbone of the iOS platform today.

Origins

In the early 1970’s Dennis Ritchie was working as a developer at the AT&T Bell Labs. He and his colleagues were working on developing a large multi-user operating system called Unix which they were writing using Assembly Language and another early programming language called ‘B’.
Developed between 1969 and 1970 by another engineer at AT&T Bell Labs, Ken Thompson, the B Programming Language was a higher-level language meaning that less code was needed to program a particular task than would have been needed in Assembly Language. The result was a significant increase in the speed at which programmers could program the computers and this in turn lead to corresponding increases in productivity. However, the B Programming Language was not perfect.

And After B there was C

In 1971, spurred on by some of the issues he and his colleagues were experiencing with the B Programming Language, Dennis Ritchie set about trying to find a better solution. His approach was to keep most of the B Programming Language’s syntax and structure but over the course of the next two years added a number of new features including data-types (a simple classification system that gave meaning to the underlying information stored by the computer) and the ability to represent structured data. The result? A brand new programming language he called ‘C’. The C Programming Language was a powerful mix of both high-level functionality and detailed features and was ideal for Operating System programming. So well received was his new language that by 1973, most of Unix had been re-written in C.

Standardization

 From that point on, the C Programming Language went from strength to strength. Baked into the core of the first, and almost all subsequent, variants of the Unix operating system the language was first documented in the 1978 seminal book ‘The C Programming Language’where Ritchie teamed up with another of his colleagues Brian Kernighan. For almost 10 years this book acted as an informal reference for programmers using C. It wasn’t until 1989 that C was first standardized by the American National Standards Institute (ANSI) as ANSI C (or C89). A year later the standard was also adopted by the International Organization for Standards (ISO) (C90), with further revisions being published in both 1995 (to support internationalization) and 1999 (C99) (to support a number of new features including several new data types and support for single-line comments). For a further 10 years, there was little change to the ISO C standard until its latest revision in 2011 (C11). This latest revision added some major new additions to the language including enhanced support for internationalization and support for multi-threaded programming (a style of programming where the computer can be doing more than one thing at once), a necessity with modern computer hardware.

Summary

From its early beginnings to the modern-day, the C Programming Language remains one of the most widely used programming languages of all time. It has heavily influenced both the syntax and structure of many of the more recent programming languages including C++ and Objective-C. In the next blog post, we will look at these influences and investigate the history of Objective-C, the key language for development of applications for iOS Devices.

No comments:

Post a Comment