up vote 19 down vote favorite
3
share [g+] share [fb]

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?

link|improve this question

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

3 Answers

up vote 26 down vote accepted

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|improve this answer
feedback

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|improve this answer
2  
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
2  
++forioccchumour! – Artelius Jan 11 '09 at 7:00
I believe the correct answer is the EBCDIC issue. – Mike Kucera Nov 5 '10 at 15:19
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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