#include char* CUpString(char* s) { char* c; for (c = s; *c; c++) *c = toupper(*c); return s; }