up vote 6 down vote favorite
share [g+] share [fb]

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
link|improve this question
This question could help you: stackoverflow.com/questions/1234582/… – Kirill V. Lyadvinsky Nov 3 '09 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 '09 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 '09 at 21:04
feedback

9 Answers

up vote 17 down vote accepted

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|improve this answer
5  
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. – Daniel Bingham Nov 3 '09 at 19:15
1  
Thanks for the quick, informative and perceptive answer. I don't really want to print strings like that... I was building an SQL string parameterizing substitution function and happened to use a '?' as my placeholder char. Frankly I see having trigraphs enabled by default in a compiler as a bad design decision (you would too if you used generated code (think lex/yacc). Indeed trigraphs can and should be implemented on the OS/UI level as it is on Mac and Linux. – Marius Nov 3 '09 at 19:58
1  
Trigraphs were put there to help with truly ancient systems where it could be difficult to input or represent characters outside ISO 646. C had to support these systems somehow, but also needs 3 kinds of brackets. Where modern compilers have disabled trigraphs by default it's for the reason you say, that these days we can rely on systems to support at least ASCII, so no workaround is needed. I don't know why trigraphs weren't removed (or at least deprecated with a recommendation compilers should warn) in C99, but there probably was some reason. – Steve Jessop Nov 3 '09 at 20:14
1  
FWIW, you could generate "??" quite easily as a "Grown Up" in your code. In DOS / Win32, "?" is a wild character for filesystem names so "log??.txt" would represent "log00.txt", "logAB.txt", etc... – Adisak Nov 3 '09 at 20:19
1  
You'd get away with in for that exact example, since ??. isn't a trigraph. But log????-??-??.txt would match log files which include dates, except that ??- is the trigraph for ~. – Steve Jessop Nov 4 '09 at 15:57
show 5 more comments
feedback

It's a Trigraph!

link|improve this answer
feedback

??) is a trigraph.

link|improve this answer
feedback

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

char* strange = "(Strange?\?)";
link|improve this answer
feedback

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

It's a trigraph.

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
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 '09 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 '09 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 '09 at 20:23
feedback

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|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.