vote up 8 vote down star

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?

flag

Verify my translation? %: is #, and <% %> is {}, and <: :> is []. Is this correct? – abelenky Jan 11 '09 at 7:02

3 Answers

vote up 17 vote down check

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

link|flag
vote up 7 vote down

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.

link|flag
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 6:27
I didn't really mean it was only the compiler. I edited to clarify. – Greg Hewgill Jan 11 '09 at 6:51
1  
++forioccchumour! – Artelius Jan 11 '09 at 7:00
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.