#include #include "lower.c" main() { int c; while ((c = getchar()) != EOF) putchar(lower(c)); return 0; }