#include #include "MODUL2.H" char *LowerCase(char *s) { char *p; p = s; while (*p) { *p = tolower(*p); ++p; } return s; }