Difference between revisions of "C"

From EDM2
Jump to: navigation, search
m (Editor support)
m (Standards)
 
Line 7: Line 7:
  
 
===Standards===
 
===Standards===
Early versions do not follow any standard apart from the ''[http://www.fh-jena.de/~kleine/history/languages/Ritchie-CReferenceManual.pdf C Reference Manual]'' that was included with the UNIX System release. There were lots of early C versions that were incompatible with each other, with every American university appearing to have its own minor variant for a while.
+
Early versions do not follow any standard apart from the ''C Reference Manual'' that was included with the UNIX System release. There were lots of early C versions that were incompatible with each other, with every American university appearing to have its own minor variant for a while.
  
 
In 1978  Brian Kernighan and Dennis Ritchie published "The C Programming Language" book which became an informal standard, referred to as "K&R C", the only problem being that it is not 100% internally coherent.
 
In 1978  Brian Kernighan and Dennis Ritchie published "The C Programming Language" book which became an informal standard, referred to as "K&R C", the only problem being that it is not 100% internally coherent.

Latest revision as of 17:40, 23 October 2021

The C Programming Language.png

The programming language C is a weakly typed imperative language in the CPL branch of the Algol family of programming languages. It's the one of the more popular programming language after Java and that alongside its widespread use as a systems language has meant that most C development systems available have seen a lot of maintenance and are therefore in a relatively good standing when it comes to support for modern CPU architectures and systems vis a vis some other languages.

History

A direct descendant of BCPL although it uses a very different syntax. Later developments are C++, Objective C and D.

Standards

Early versions do not follow any standard apart from the C Reference Manual that was included with the UNIX System release. There were lots of early C versions that were incompatible with each other, with every American university appearing to have its own minor variant for a while.

In 1978 Brian Kernighan and Dennis Ritchie published "The C Programming Language" book which became an informal standard, referred to as "K&R C", the only problem being that it is not 100% internally coherent.

The ANSI X3.159-1989 standard (ANSI C) was ratified in 1989 that was adopted by ISO one year later.

The ISO/IEC JTC1/SC22/WG14 working group produced the ISO/IEC 9899:1999 which is known informally as "C99", note that there are three later additions/amendments to the standard and therefore not all C99 code is 100% compatible.

In 2011 the ISO/IEC 9899:2011 or "C11" standard was introduced, while there is some language changes, the main changes are in the standard libraries.

Features

C is often erroneously described as being "closer to the hardware" than other languages, and this is used to explain why it is faster and less portable than "language x". In fact C is no closer or further from the metal than any other similar language in the Algol branch, no more or less portable and no faster or slower either. What C is however is a systems language much like PL/I, i.e. it is designed from the outset to be able to program any function that a computer system requires and therefore provides a number of low level functions that are designed to aid in systems programming but are not necessarily useful in day to day programming.

This is in contrast to a number of other languages like Pascal that are domain specific or in other words are designed to perform well inside a specific functionality domain. This includes application, simulation, scripting or teaching languages, and these are not or were not originally meant to be used to write systems software with. Although you can coax them to do so in many cases or extend them to encapsulate functions needed for systems software.

But even though C was designed from the outset as a systems language it does have some peculiar deficiencies that have never been fixed altogether. It is slower than most other Algol family languages in doing I/O, to a point where even interpreted versions of Pascal and Basic can be considerably faster performing I/O than compiled C code. For this reason C has never really caught on as a programming language on mainframes and most minicomputer systems to the degree it has on PCs and UNIX systems, especially if they have registered I/O and file systems. Those systems rely to a much higher degree on throughput than processing power vis-a-vis PCs and workstations, so languages like FORTRAN and PL/I have tended to survive in those environments.

Implementations

OS/2 1.x

Hosted language implementations that produce OS/2 16-bit object code

OS/2 2.x

Hosted Language implementations that produce OS/2 32-bit object code

There was also a port of Comeau C++ 3.x that was functional but never released as a product, although a few examples got released into the wild.

Interpreter

See also: DOS Implementations of C

C source code snippets, archives and collections

Small programs or routines that you can integrate into your own programs or study to learn from, but are not delivered in library form.

Open source

GUI and application generators with C output

Commercial
  • General Application Workbench - GUI, animation, help and SQL
  • Hockware VisPro/C - GUI Creator
  • Intersolv GA Workbench
  • Panel Plus II - Screen painter and UI library
  • PCYACC/2 - CASE too with C output, targeted towards generating parsers etc.
  • Vestronix Pro C - Database and spreadsheet application generator

Translators that generate C output

C Source Code Utilities

  • CC-Rider C++ - Commercial - Static analyser, beautifier and visualiser.
  • DOC++ - Automatic document generator - Open source
  • Ephedra - C/C++ to Java - Open source
  • Exuberant ctags - Creates index files out of C source files
  • SourceLink - Commercial - Browser/Editor/Visualiser
  • Source Mapper - Open source - Visualiser
Static analyser

Applications with a C programming interface

C like scripting languages

Note that this does not include full interpreters like Cint, but either languages squarely intended to be scripted and/or embeddable interpreters.

Publications

Not as you might think a discussion of the Microsoft C library, but rather a collection of C routines and utilities written in C, most of them UNIX derived or inspired and a couple of them uncommon.

Local articles

  • Finn Overgaard Hansen: 12 Common C Errors - Outdated but still somewhat useful especially for beginners and intermediate users.
Tutorials and other learning material
  • EDM/2 has its own C tutorial, it's called simply Introduction to C Programming, and was written by Carsten Whimster:
    Part 1, 2, 3, 4, 5, 6, 7, 8, 9, 10

Links

  • Aalto University and the University of Helsinki have a free course in C called Aalto-C
  • MIX Software has a number of video courses available that focus on teaching C, these are focused primarily towards the beginner, note that these are delivered in VHS cassette format.