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) a[b] || b[a]
|
feedback
|
|
Short answer: keyboards/character encodings that didn't include such graphs. From wikipedia:
| |||
|
feedback
|
|
Some old keyboards didn't have specific characters on them, so the language worked around it by letting you use trigraphs instead. | |||||||
feedback
|