 |
|
Electronics Circuits &
Tutorials |
|
|
|
|
|
|
|
|
|
|
Home >
Electronics Tutorials >
C Language
Tutorial > Characters
- Trigraph Characters |
C Language Programming Library
Reference Guide
|
Characters
- Trigraph Characters
|
|
|
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.
| Trigraph Sequence |
Translation Character |
??= |
# |
??( |
[ |
??/ |
\ |
??) |
] |
??' |
^ |
??< |
{ |
??! |
| |
??> |
} |
??- |
~ |
Example:
printf("No???/n");
translates into:
printf("No?\n");
|
|
|
|
|
Note: To report broken links or to submit your projects,
tutorials please email to Webmaster |
|
|
|
|
|
|
Copyright ©
1999-2020
www.hobbyprojects.com
(All rights reserved) |
|