Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: FIO04 compliance

...

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="cf59bf68ecab2771-fb4cfda3-4071474c-ac34b169-adcba9fa2e043947b8ae921c"><ac:plain-text-body><![CDATA[

??(

[

 

??'

^

 

??>

}

]]></ac:plain-text-body></ac:structured-macro>

??/

\

 

??<

{

 

??-

~

...

Code Block
bgColor#ffcccc
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
bgColorccccff
size_t i;
/* assignment of i */
if (i > 9000) {
   if (puts("Over 9000!?""?!"); == EOF) {
     /* Handle Error */
   }
}

The above code prints Over 9000!??!, as intended.

...