#include "stdio.h" #include "ctype.h" main() { char c; printf("\nPlease input some characters:(end of '*')\n"); while((c=getchar())!='*') { if (islower(c)) c = toupper(c); printf("%c", c); } }