/* A program that maps its input to all lower case */ #include #include int main() { int c; while ( (c=getchar()) != EOF ) putchar(tolower(c)); return 0; }