...
All occurrences in a source file of the following sequences of three characters (that is, trigraph sequences) are replaced with the corresponding single character.
??=
#
??)
]
??!
|
<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="c4b2abb7561901fa-4b6f8fe5-45a84061-b2e2ac0a-c189f609fb5c8ec399b9f016"><ac:plain-text-body><![CDATA[
??(
[
??'
^
??>
}
]]></ac:plain-text-body></ac:structured-macro>
??/
\
??<
{
??-
~
...
| Code Block | ||
|---|---|---|
| ||
size_t i;
/* assignment of i */
if (i > 9000) {
if (puts("Over 9000!??!"); == EOF) {
/* Handle Error */
}
}
|
This example prints Over 9000!| if a C99-compliant compiler is used.
...
| Code Block | ||
|---|---|---|
| ||
size_t i;
/* assignment of i */
if (i > 9000) {
if (puts("Over 9000!?""?!"); == EOF) {
/* Handle Error */
}
}
|
The above code prints Over 9000!??!, as intended.
...