#include #include void main() { char command[64]; char oh[] = "Oh, so it's \""; char now[] = "\" now, hmmm?\n"; char new[128]; for(;;) { printf("C:\>"); gets(command); strcpy(new,oh); strcat(new,strupr(command)); strcat(new,now); puts(new); } }