Skip to main content

Introduction to the C language

In this introduction to the c language, I highlight characters and reference points of this programming language; which changed the world of computing, contributing uniquely to today's world. 

The language was developed by Dennis Ritchie, in the Bell labs, between (1972/73) on "DEC PDP-11"; acronym for (Digital Equipment Corporation Programmed Data Processor model 11) with 16-bit architecture. It was in these labs that Ritchie ran the first program written in c. 

Dennis Ritchie


The c imprint derives from a development process of Martin Richards' BCPL language which influenced Ken Thomson's writing of language B.

Ken Thompson and Dennis Ritchie 1973

Introduction to the C language

In the early 1970s, the C language begins its path to success! Being a procedural language, it is able to integrate features of low-level languages, such as assembly; this affinity, in my opinion, makes C the middle ground between low-level and high-level languages.

The C language

The C language, renowned for its power, has established itself as a reference language for the development of system software on a global scale; a classic example, just to be clear, the Unix operating system and its derivatives; this language shows its full value in those programs that require high performance! Unlike the Java language where hardware has been adapted, improved and enhanced over time to take advantage of the Java Virtual Machine.

Comments

Popular posts from this blog

The origins of computer programming

Modern computers can process large amounts of data. Before the current computers we can only refer to the analytical machine of Charles Babbage; This machine performed calculations thanks to the rotation of gear wheels. Countess Ada Lovelace participates in the creation of Charles Babbage's analytical machine by decoding the language to make it work; US Department of Defense dedicates the ADA programming language in the name of the Countess.  The role of women in computer science  Apparently, the position of women in the history of computer programming seems to cut out only a marginal role; in reality, it is not so! As already mentioned in the previous paragraph; without the contribution that Countess Ada Lovelace left to the world of information technology; this science could be decades behind. The origins of computer programming languages  The origins of programming languages were determined by a mechanical and mostly experimental approach; with reference to the an...

Learn to use the computer

Many people use the PC every day to connect to the network and to work but without knowing what the computer is and wondering how this is possible. We put a computer to work every time we buy with a credit card, withdraw from an ATM, pay a postal order, buy a train ticket, play video games and many other things. Understanding how the PC works inside is too much but starting from its components and the origins of  IT is already a good start. Learn to use the computer Basic computer components The computer is made up of several electronic components on printed circuits that interact with each other via micro pulses; if you want to learn how to use the computer, the main components of a PC are: A central processing unit (CPU); the "processor" used to process active processes on the data before outgoing transmission. RAM memories (random access memory) in which the bytes for processing are loaded; it is the dynamic memory of the computer and it is volatile; A graphics processing...

Introduction to the JavaScript language

In this introduction to the JavaScript language we discover one of the programming languages that has changed the concept of understanding the Web. The added value of JavaScript to the HTML code is to make the Web page dynamic in its interactions with the user. JavaScript is a client-side web programming language. Web 2.0 was born with the JavaScript language. The advantages of the JavaScript JavaScript or "JS" in its abbreviated form; is the most widely used client-side scripting language on the web. The advantage of the JavaScript is that it can be interpreted by almost all browsers; while what has allowed a strong expansion is the availability of many frameworks and libraries that can be easily integrated into scripts. The language is unique in its kind for data exchange thanks to the asynchronous AJAX (Asynchronous JavaScript and XML) functions that allow you to interact with users without reloading web pages and to exchange data in JSON (JavaScript Object Notation) for...