77

I learned today that there are digraphs in C99 and C++. The following is a valid program:

%:include <stdio.h>

%:ifndef BUFSIZE
 %:define BUFSIZE  512
%:endif

void copy(char d<::>, const char s<::>, int len)
<%
    while (len-- >= 0)
    <%
        d<:len:> = s<:len:>;
    %>
%>

My question is: why do they exist?

Sydius
  • 12,881
  • 17
  • 56
  • 75

4 Answers4

71

Digraphs were created for programmers that didn't have a keyboard which supported the ISO 646 character set.

http://en.wikipedia.org/wiki/C_trigraph

CTT
  • 16,045
  • 6
  • 40
  • 36
  • 3
    I recently found [this article](http://wiert.me/2012/07/04/hollerith-and-why-we-have-digraphs-in-pascal-and-trigraphs-in-cc-nostalgia-apple-plus/), which states that digraphs in Pascal have a root not in keyboard limitations but punch-card character representation limits. And yes, Pascal is not C or C++, but I thought you may find it interesting. – qqbenq Aug 29 '14 at 13:51
  • 1
    Non-ASCII keyboards were not a problem. Sure it looked odd, but... main(int argc,char *argvÄÅ) ä printf("HelloÖn"); å – robinr May 06 '19 at 10:44
25

I believe that their existence can be traced back to the possibility that somewhere, somebody is using a compiler with an operating system whose character set is so archaic that it doesn't necessarily have all the characters that C or C++ need to express the whole language.

Also, it makes for good entries in the IOCCC.

Greg Hewgill
  • 890,778
  • 177
  • 1,125
  • 1,260
  • 6
    Not necessarily the compiler, Greg. Some of the mainframe EBCDIC character sets don't have consistent characters for the square brackets, which rather stuffs up array processing. This is a limitation of the editor and/or terminal emulator more than the compiler itself. – paxdiablo Jan 11 '09 at 06:27
  • I didn't really mean it was only the compiler. I edited to clarify. – Greg Hewgill Jan 11 '09 at 06:51
  • No, it has nothing to do with EBCDIC. These sequences were for the sake of Scandinavians who used some of the ASCII characters as language characters (so the symbols were different on the keycaps and in output). – Jim Balter Feb 28 '14 at 08:18
  • 5
    The mention of [IOCCC](http://www.ioccc.org/) added significant value to this answer for me. – Weston Jul 04 '14 at 14:17
16

I think it's because some of the keyboards on this planet might not have keys like '#' and '{'.

ChrisW
  • 53,487
  • 12
  • 110
  • 213
12

The digraphs and trigraphs in C/C++ come from the days of six bit character sets used by the CDC6000 (60 bits), Univac 1108 (36 bits), DECsystem 10 and 20 systems (36 bits) each of which used a proprietary 64 character set not compatible with the ASA X3.4-1963 (Now know as ANSI X3.4-1963 "7-bit American National Standard Code for Information Interchange"). The latest revision is ANSI X3.4-1986.

Since these systems were incapable of representing all of the 96 graphical code points, many were omitted. In addition, X3.4 was coordinated with other National Standard Institutes (GBR, GER, ITA, etc) and there were code points in X3.4 which were designated as national replacement characters - the most obvious example is the # for the Britsh Pound symbol (obvious because the name of the # character is "pound sign" from it's conventional usage in US commerce - prior to the the evolution of Twitter) and the '{' '}' were also designated as national replacement characters.

Thus digraphs were introduced to provide a mechanism for those computer systems incapable of representing the characters, and also for data terminal equipment which assigned national replacement characters to the conflicting code points. Di/Tri-graphs have become a archaic artifact of computing history (a subject not taught in computer science these days).

An exhaustive paper on this subject can be found here: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.96.678&rep=rep1&type=pdf

Martin Tournoij
  • 24,971
  • 24
  • 101
  • 136
JTM
  • 121
  • 1
  • 2