3 Sıralı Karakterler | Dönüştürülen Karakter |
??= | # |
??( | [ |
??/ | \ |
??) | ] |
??' | ^ |
??< | { |
??! | | |
??> | } |
??- | ~ |
Dönüştürülmüş Hali:
printf("No???/n");
printf("No?\n");
A trigraph sequence found in the source code is converted to its respective translation character. This allows people to enter certain characters that are not allowed under some (rare) platforms.
Example:
Trigraph Sequence | Translation Character |
??= | # |
??( | [ |
??/ | \ |
??) | ] |
??' | ^ |
??< | { |
??! | | |
??> | } |
??- | ~ |
translates into:
printf("No???/n");
printf("No?\n");