#include #include void main() { char string[] = "You don't have to shout!"; char c; int x; x = 0; puts(string); while(c != '!') { c = string[x]; c = toupper(c); string[x] = c; x++; } puts(string); }