Pangram checker: Difference between revisions

→‎Using bitmask: Clarify environment restriction in a whole sentence
(→‎Using bitmask: Only valid for ASCII execution character set)
(→‎Using bitmask: Clarify environment restriction in a whole sentence)
Line 611:
}</lang>
===Using bitmask===
Assumes an execution environment using the ASCII character set (will invoke undefined behavior on other systems).
{{Works with|ASCII}}
 
<lang c>#include <stdio.h>