Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
10answers
2k views

Purpose of Trigraph sequences in C++?

According to C++'03 Standard 2.3/1: Before any other processing takes place, each occurrence of one of the following sequences of three characters (“trigraph sequences”) is replaced by the single ...
10
votes
2answers
237 views

Are digraphs and trigraphs in use today?

Given that there were once reasons to use digraphs and trigraphs in C and C++, does anyone put them in code being written today? Is there any substantial amount of legacy code still under maintenance ...
8
votes
1answer
513 views

Escape sequence for ? in c++

I was looking at the escape sequences for characters in strings in c++ and I noticed there is an escape sequence for a question mark. Can someone tell me why this is? It just seems a little odd and ...
7
votes
6answers
1k views

C++ alternative tokens?

I've just read this nice piece from reddit. They mention "and" and "or" being "Alternative Tokens" to && and || I was really unaware of these just till now. Of course, everybody knows about ...
6
votes
9answers
689 views

Unknown meta-character in C/C++ string literal?

I created a new project with the following code segment: char* strange = "(Strange??)"; cout << strange << endl; resulting in the following output: (Strange] Thus translating ...
4
votes
5answers
270 views

Print ?? and !! in different sequence will show different output

I had found a strange output when I write the following lines in very simple way: Code: printf("LOL??!\n"); printf("LOL!!?\n"); Output: It happens even the code is compiled under both MBCS and ...
1
vote
2answers
85 views

Curious trigraph sequence thing about ansi C

What was is it the original reason to use trigraph sequence of some chars to become other chars in ansi C like: ??=define arraycheck(a, b) a??(b??) ??!??! b??(a??) becomes #define arraycheck(a, b) ...