A historical curiosity in C:
The language includes digraphs so programmers could write code on keyboards missing characters like `{` or `#`.
Example:
`<%` instead of `{`
It’s rarely used today but still part of the standard.
int main(void)
<%
return 0;
%>
#CProgramming #ProgrammingHistory