Pangram checker: Difference between revisions

Content added Content deleted
(→‎{{header|C}}: Make the code work with EBCDIC, return fast, don't use implementation-reserved names (index, string))
(→‎Using bitmask: Only valid for ASCII execution character set)
Line 611: Line 611:
}</lang>
}</lang>
===Using bitmask===
===Using bitmask===
{{Works with|ASCII}}

<lang c>#include <stdio.h>
<lang c>#include <stdio.h>