vote up 4 vote down star

I created a new project with the following code segment:

char* strange = "(Strange??)";
cout << strange << endl;

resulting in the following output:

(Strange]

Thus translating '??)' -> ']'

Debugging it shows that my char* string literal is actually that value and it's not a stream translation. This is obviously not a meta-character sequence I've ever seen. Some sort of Unicode or wide char sequence perhaps? I don't think so however... I've tried disabling all related project settings to no avail.

Anyone have an explanation?

  • search : 'question mark, question mark, close brace' c c++ string literal
flag
This question could help you: stackoverflow.com/questions/1234582/… – Kirill V. Lyadvinsky Nov 3 at 19:12
thanks... I added the search at the bottom of my post in the hopes that future searches would match the double question mark contruct. This design decision (by enabling it as default) is in one word : 'insane'. Leave trigraphs to the OS/UI I say. – Marius Nov 3 at 20:03
1  
Trigraphs were specifically added for the cases where the OS/UI was insufficient. Remember that C dates from a time when the UI was a 9600 baud terminal connection and ASCII was far from universal. – caf Nov 3 at 21:04

9 Answers

vote up 14 vote down check

What you're seeing is called a trigraph.

In written language by grown-ups, one question mark is sufficient for any situation. Don't use more than one at a time and you'll never see this again.

GCC ignores trigraphs by default because hardly anyone uses them intentionally. Enable them with the -trigraph option, or tell the compiler to warning you about them with the -Wtrigraphs option.

Visual C++ 2010 also disables them by default and offers /Zc:trigraphs to enable them. I can't find anything about ways to enable or disable them in prior versions.

link|flag
+1, but it's actually a trigraph en.wikipedia.org/wiki/Digraphs_and_trigraphs#C/…. – Bears will eat you Nov 3 at 19:05
You commented quickly. I fixed it once I noticed there really were three characters there. Thanks. – Rob Kennedy Nov 3 at 19:05
4  
Is the insulting insinuation that Marius is not a grown up really necessary? I'm with holding down vote on the assumption it was meant in good humor, but it's really rather belittling and completely unnecessary. – Alcon Nov 3 at 19:15
It was never meant to insinuate anything about Marius. Whether he's a grown-up or not, if he intends his writing to look like it came from one, then he doesn't need repeated punctuation marks. – Rob Kennedy Nov 3 at 19:23
MSVC started supporting warning about trigraphs in VS2008 (warning C4837), but you have to jump through some hoops to enable it (-Wall or something; I'm not quite sure). – Michael Burr Nov 3 at 19:37
show 5 more comments
vote up 1 vote down

While trying to cross-compile on GCC it picked my sequence up as a trigraph:

So all I need to do now is figure out how to disable this in projects by default since I can only see it creating problems for me. (I'm using a US keyboard layout anyway)

The default behavior on GCC is to ignore but give a warning, which is much more sane and is indeed what Visual Studio 2010 will adopt as the standard as far as I know.

link|flag
vote up 2 vote down

As mentioned several times, you're being bitten by a trigraph. See this previous SO question for more information:

You can fix the problem by using the '\?' escape sequence for the '?' character:

char* strange = "(Strange\?\?)";

In fact, this is the reason for that escape sequence, which is somewhat mysterious if you're unaware of those damn trigraphs.

link|flag
Thanks for the response... due to the nature of this bug it's impossible to search for an answer unless one knows it's a trigraph. The problem with fixing it that way is that I'm using generated C from a lex/yacc parser generator. I've used and created my own trigraphs on my Mac and I feel it's the OS's place to handle trigraph keyboard sequences and not the compiler. Indeed only in VS 2010 they will change this default behavior. – Marius Nov 3 at 19:48
Yes - I can imagine that searching for help on this without already knowing what a trigraph is presents a serious chicken and egg problem. If you can't change the lex/yacc output and have to use a compiler that won't ignore trigraphs (VS2010 or GCC), then I think you're stuck with having to run the lex/tacc output through a filter that will change trigraphs into harmless non-trigraphs. – Michael Burr Nov 3 at 19:55
If yacc really is outputting incorrect C ("incorrect" because it fails to parse the grammar specified if that grammar contains consecutive question-mark characters), that's pretty poor. OK, so it's only incorrect because of a misfeature of C, but if you're going to write code generation tools I think you take it on yourself to deal with both features and misfeatures of your target language. But if it's only gone wrong because a trigraph appears in a yacc action, that's the user's mistake for putting it there. – Steve Jessop Nov 3 at 20:23
vote up 3 vote down

Easy way to avoid the trigraph surprise: split a "??" string literal in two:

char* strange = "(Strange??)";
char* strange2 = "(Strange?" "?)";
/*                         ^^^ no punctuation */

Edit
gcc has an option to warn about trigraphs: -Wtrigraphs (enabled with -Wall also)
end edit

Quotes from the Standard

    5.2.1.1 Trigraph sequences
1   Before any other processing takes place, each occurrence of one of the
    following sequences of three characters (called trigraph sequences13))
    is replaced with the corresponding single character.
           ??=      #               ??)      ]               ??!      |
           ??(      [               ??'      ^               ??>      }
           ??/      \               ??<      {               ??-      ~
    No other trigraph sequences exist. Each ? that does not begin one of
    the trigraphs listed above is not changed.
    5.1.1.2 Translation phases
1   The precedence among the syntax rules of translation is specified by
    the following phases.
         1.   Physical source file multibyte characters are mapped, in an
              implementation-defined manner, to the source character set
              (introducing new-line characters for end-of-line indicators)
              if necessary. Trigraph sequences are replaced by corresponding
              single-character internal representations.
link|flag
vote up 4 vote down

That's trigraph support. You can prevent trigraph interpretation by escaping any of the characters:

char* strange = "(Strange?\?)";
link|flag
vote up 4 vote down

Trigraphs are the reason. The talk about C in the article also applies to C++

link|flag
vote up 3 vote down

It's a trigraph.

link|flag
vote up 4 vote down

??) is a trigraph.

link|flag
vote up 5 vote down

It's a Trigraph!

link|flag

Your Answer

Get an OpenID
or

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