#include #include int main(){ char the_string[] = "polypropylene nylon sisal kevlar"; for(char *place = the_string; *place; place++) *place = toupper(*place); printf("The string ended up as: %s\n", the_string); return 0; }