The trigraphs tag has no wiki summary.
32
votes
3answers
864 views
meaning of `???-` in C++ code [duplicate]
I saw the following code from some legacy codes:
size_t a = 1 ???- 2 :0;
What does the symbol ???- mean in C++? How should I understand it?
Thank you!
0
votes
1answer
121 views
(Di|Tri)graphs in C++11
After reading up on digraphs and trigraphs I went on and tested a simple program:
#include <stdio.h>
int main()
{
int a = 0;
//??/
++a;
printf("%d",a);
return 0;
}
and by ...
1
vote
1answer
76 views
Trigraph characters
c99 standard 5.2.1.1 Trigraph sequences
2 EXAMPLE The following source line
printf("Eh???/n");
becomes (after replacement of the trigraph sequence ??/)
printf("Eh?\n");
It's saying that it ...
1
vote
2answers
70 views
Simple string output not as expected (new line appearing)
I have code equivalent to the following to print out a short string:
#include <iostream>
#include <string>
int main(int argc, const char* argv[])
{
std::string s = "finished??/not ...
0
votes
2answers
69 views
how can I work with digraphs and trigrpahs in bloodshed/DevC++ compiler
In compiler trigraphs and digraphs are not replacing by the corresponding single characters.
Rather it's giving a warning something like this,
12:26 G:\BIN\cLang\macro2.cpp [Warning] trigraph ??= ...
3
votes
1answer
320 views
suggest like google with postgresql trigrams and full text search
I want to do a text search like google suggestions.
I'm using PostgreSQL because of the magical Postgis.
I was thinking on using FTS, but I saw that it could not search partial words, so I found ...
5
votes
2answers
509 views
Is there a switch to disable trigraphs with clang?
I've got some (legacy) code that I'm building with clang for the first time. The code is something like:
sprintf(buf, "%s <%s ????>", p1, p2);
Clang gives the following warning (error with ...
11
votes
3answers
936 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 ...
1
vote
2answers
142 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) ...
5
votes
5answers
341 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 ...
6
votes
9answers
1k 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 ...
9
votes
1answer
1k 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 ...
34
votes
10answers
6k 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 ...
12
votes
6answers
2k 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 ...
