| Builtin Types |
char inch
while((inch = getchar()) != EOF)
Infinite loop on some systems.
char ch = 'p'
tolower(ch)
| Older implementations break if you run tolower on a character which is not actually an upper case letter. Likewise with toupper. |
| Builtin Types |